| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| firstName | String? |
|
No | - |
| lastName | String? |
|
No | - |
| name | String |
|
Yes | - |
| String |
|
Yes | - | |
| emailVerified | Boolean? |
|
No | - |
| image | String? |
|
No | - |
| status | UserStatus |
|
Yes | - |
| sessions | Session[] |
|
Yes | - |
| accounts | Account[] |
|
Yes | - |
| roleAssignments | UserRoleAssignment[] |
|
Yes | - |
| businessUnits | UserBusinessUnit[] |
|
Yes | - |
| notifications | Notification[] |
|
Yes | - |
| headedBusinessUnit | BusinessUnit? |
|
No | - |
| initiatedRequisitions | Requisition[] |
|
Yes | - |
| assignedApprovals | RequisitionApproval[] |
|
Yes | - |
| comments | Comment[] |
|
Yes | - |
| uploadedAttachments | Attachment[] |
|
Yes | - |
| createdTags | Tag[] |
|
Yes | - |
| taggedRequisitions | RequisitionTag[] |
|
Yes | - |
| chats | ChatParticipant[] |
|
Yes | - |
| sentChatMessages | ChatMessage[] |
|
Yes | - |
| createdGroupChats | Chat[] |
|
Yes | - |
Find zero or one User
// Get one User
const user = await prisma.user.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereUniqueInput | Yes |
Find first User
// Get one User
const user = await prisma.user.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereInput | No |
| orderBy | UserOrderByWithRelationInput[] | UserOrderByWithRelationInput | No |
| cursor | UserWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserScalarFieldEnum | UserScalarFieldEnum[] | No |
Find zero or more User
// Get all User
const User = await prisma.user.findMany()
// Get first 10 User
const User = await prisma.user.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | UserWhereInput | No |
| orderBy | UserOrderByWithRelationInput[] | UserOrderByWithRelationInput | No |
| cursor | UserWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserScalarFieldEnum | UserScalarFieldEnum[] | No |
Create one User
// Create one User
const User = await prisma.user.create({
data: {
// ... data to create a User
}
})
| Name | Type | Required |
|---|---|---|
| data | UserCreateInput | UserUncheckedCreateInput | Yes |
Delete one User
// Delete one User
const User = await prisma.user.delete({
where: {
// ... filter to delete one User
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereUniqueInput | Yes |
Update one User
// Update one User
const user = await prisma.user.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserUpdateInput | UserUncheckedUpdateInput | Yes |
| where | UserWhereUniqueInput | Yes |
Delete zero or more User
// Delete a few User
const { count } = await prisma.user.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereInput | No |
| limit | Int | No |
Update zero or one User
const { count } = await prisma.user.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserUpdateManyMutationInput | UserUncheckedUpdateManyInput | Yes |
| where | UserWhereInput | No |
| limit | Int | No |
Create or update one User
// Update or create a User
const user = await prisma.user.upsert({
create: {
// ... data to create a User
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the User we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereUniqueInput | Yes |
| create | UserCreateInput | UserUncheckedCreateInput | Yes |
| update | UserUpdateInput | UserUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| expiresAt | DateTime |
|
Yes | - |
| token | String |
|
Yes | - |
| ipAddress | String? |
|
No | - |
| userAgent | String? |
|
No | - |
| userId | String |
|
Yes | - |
| user | User |
|
Yes | - |
Find zero or one Session
// Get one Session
const session = await prisma.session.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SessionWhereUniqueInput | Yes |
Find first Session
// Get one Session
const session = await prisma.session.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SessionWhereInput | No |
| orderBy | SessionOrderByWithRelationInput[] | SessionOrderByWithRelationInput | No |
| cursor | SessionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | SessionScalarFieldEnum | SessionScalarFieldEnum[] | No |
Find zero or more Session
// Get all Session
const Session = await prisma.session.findMany()
// Get first 10 Session
const Session = await prisma.session.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | SessionWhereInput | No |
| orderBy | SessionOrderByWithRelationInput[] | SessionOrderByWithRelationInput | No |
| cursor | SessionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | SessionScalarFieldEnum | SessionScalarFieldEnum[] | No |
Create one Session
// Create one Session
const Session = await prisma.session.create({
data: {
// ... data to create a Session
}
})
| Name | Type | Required |
|---|---|---|
| data | SessionCreateInput | SessionUncheckedCreateInput | Yes |
Delete one Session
// Delete one Session
const Session = await prisma.session.delete({
where: {
// ... filter to delete one Session
}
})
| Name | Type | Required |
|---|---|---|
| where | SessionWhereUniqueInput | Yes |
Update one Session
// Update one Session
const session = await prisma.session.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | SessionUpdateInput | SessionUncheckedUpdateInput | Yes |
| where | SessionWhereUniqueInput | Yes |
Delete zero or more Session
// Delete a few Session
const { count } = await prisma.session.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SessionWhereInput | No |
| limit | Int | No |
Update zero or one Session
const { count } = await prisma.session.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | SessionUpdateManyMutationInput | SessionUncheckedUpdateManyInput | Yes |
| where | SessionWhereInput | No |
| limit | Int | No |
Create or update one Session
// Update or create a Session
const session = await prisma.session.upsert({
create: {
// ... data to create a Session
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Session we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | SessionWhereUniqueInput | Yes |
| create | SessionCreateInput | SessionUncheckedCreateInput | Yes |
| update | SessionUpdateInput | SessionUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| accountId | String |
|
Yes | - |
| providerId | String |
|
Yes | - |
| accessToken | String? |
|
No | - |
| refreshToken | String? |
|
No | - |
| idToken | String? |
|
No | - |
| accessTokenExpiresAt | DateTime? |
|
No | - |
| refreshTokenExpiresAt | DateTime? |
|
No | - |
| scope | String? |
|
No | - |
| password | String? |
|
No | - |
| userId | String |
|
Yes | - |
| user | User |
|
Yes | - |
Find zero or one Account
// Get one Account
const account = await prisma.account.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AccountWhereUniqueInput | Yes |
Find first Account
// Get one Account
const account = await prisma.account.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AccountWhereInput | No |
| orderBy | AccountOrderByWithRelationInput[] | AccountOrderByWithRelationInput | No |
| cursor | AccountWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | AccountScalarFieldEnum | AccountScalarFieldEnum[] | No |
Find zero or more Account
// Get all Account
const Account = await prisma.account.findMany()
// Get first 10 Account
const Account = await prisma.account.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | AccountWhereInput | No |
| orderBy | AccountOrderByWithRelationInput[] | AccountOrderByWithRelationInput | No |
| cursor | AccountWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | AccountScalarFieldEnum | AccountScalarFieldEnum[] | No |
Create one Account
// Create one Account
const Account = await prisma.account.create({
data: {
// ... data to create a Account
}
})
| Name | Type | Required |
|---|---|---|
| data | AccountCreateInput | AccountUncheckedCreateInput | Yes |
Delete one Account
// Delete one Account
const Account = await prisma.account.delete({
where: {
// ... filter to delete one Account
}
})
| Name | Type | Required |
|---|---|---|
| where | AccountWhereUniqueInput | Yes |
Update one Account
// Update one Account
const account = await prisma.account.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | AccountUpdateInput | AccountUncheckedUpdateInput | Yes |
| where | AccountWhereUniqueInput | Yes |
Delete zero or more Account
// Delete a few Account
const { count } = await prisma.account.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AccountWhereInput | No |
| limit | Int | No |
Update zero or one Account
const { count } = await prisma.account.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | AccountUpdateManyMutationInput | AccountUncheckedUpdateManyInput | Yes |
| where | AccountWhereInput | No |
| limit | Int | No |
Create or update one Account
// Update or create a Account
const account = await prisma.account.upsert({
create: {
// ... data to create a Account
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Account we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | AccountWhereUniqueInput | Yes |
| create | AccountCreateInput | AccountUncheckedCreateInput | Yes |
| update | AccountUpdateInput | AccountUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| createdAt | DateTime? |
|
No | - |
| updatedAt | DateTime? |
|
No | - |
| identifier | String |
|
Yes | - |
| value | String |
|
Yes | - |
| expiresAt | DateTime |
|
Yes | - |
Find zero or one Verification
// Get one Verification
const verification = await prisma.verification.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | VerificationWhereUniqueInput | Yes |
Find first Verification
// Get one Verification
const verification = await prisma.verification.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | VerificationWhereInput | No |
| orderBy | VerificationOrderByWithRelationInput[] | VerificationOrderByWithRelationInput | No |
| cursor | VerificationWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | VerificationScalarFieldEnum | VerificationScalarFieldEnum[] | No |
Find zero or more Verification
// Get all Verification
const Verification = await prisma.verification.findMany()
// Get first 10 Verification
const Verification = await prisma.verification.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | VerificationWhereInput | No |
| orderBy | VerificationOrderByWithRelationInput[] | VerificationOrderByWithRelationInput | No |
| cursor | VerificationWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | VerificationScalarFieldEnum | VerificationScalarFieldEnum[] | No |
Create one Verification
// Create one Verification
const Verification = await prisma.verification.create({
data: {
// ... data to create a Verification
}
})
| Name | Type | Required |
|---|---|---|
| data | VerificationCreateInput | VerificationUncheckedCreateInput | Yes |
Delete one Verification
// Delete one Verification
const Verification = await prisma.verification.delete({
where: {
// ... filter to delete one Verification
}
})
| Name | Type | Required |
|---|---|---|
| where | VerificationWhereUniqueInput | Yes |
Update one Verification
// Update one Verification
const verification = await prisma.verification.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | VerificationUpdateInput | VerificationUncheckedUpdateInput | Yes |
| where | VerificationWhereUniqueInput | Yes |
Delete zero or more Verification
// Delete a few Verification
const { count } = await prisma.verification.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | VerificationWhereInput | No |
| limit | Int | No |
Update zero or one Verification
const { count } = await prisma.verification.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | VerificationUpdateManyMutationInput | VerificationUncheckedUpdateManyInput | Yes |
| where | VerificationWhereInput | No |
| limit | Int | No |
Create or update one Verification
// Update or create a Verification
const verification = await prisma.verification.upsert({
create: {
// ... data to create a Verification
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Verification we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | VerificationWhereUniqueInput | Yes |
| create | VerificationCreateInput | VerificationUncheckedCreateInput | Yes |
| update | VerificationUpdateInput | VerificationUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| name | String |
|
Yes | - |
| headId | String |
|
Yes | - |
| head | User |
|
Yes | - |
| members | UserBusinessUnit[] |
|
Yes | - |
| roles | Role[] |
|
Yes | - |
| requisitionTemplates | RequisitionTemplate[] |
|
Yes | - |
| requisitions | Requisition[] |
|
Yes | - |
Find zero or one BusinessUnit
// Get one BusinessUnit
const businessUnit = await prisma.businessUnit.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BusinessUnitWhereUniqueInput | Yes |
Find first BusinessUnit
// Get one BusinessUnit
const businessUnit = await prisma.businessUnit.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BusinessUnitWhereInput | No |
| orderBy | BusinessUnitOrderByWithRelationInput[] | BusinessUnitOrderByWithRelationInput | No |
| cursor | BusinessUnitWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BusinessUnitScalarFieldEnum | BusinessUnitScalarFieldEnum[] | No |
Find zero or more BusinessUnit
// Get all BusinessUnit
const BusinessUnit = await prisma.businessUnit.findMany()
// Get first 10 BusinessUnit
const BusinessUnit = await prisma.businessUnit.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | BusinessUnitWhereInput | No |
| orderBy | BusinessUnitOrderByWithRelationInput[] | BusinessUnitOrderByWithRelationInput | No |
| cursor | BusinessUnitWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BusinessUnitScalarFieldEnum | BusinessUnitScalarFieldEnum[] | No |
Create one BusinessUnit
// Create one BusinessUnit
const BusinessUnit = await prisma.businessUnit.create({
data: {
// ... data to create a BusinessUnit
}
})
| Name | Type | Required |
|---|---|---|
| data | BusinessUnitCreateInput | BusinessUnitUncheckedCreateInput | Yes |
Delete one BusinessUnit
// Delete one BusinessUnit
const BusinessUnit = await prisma.businessUnit.delete({
where: {
// ... filter to delete one BusinessUnit
}
})
| Name | Type | Required |
|---|---|---|
| where | BusinessUnitWhereUniqueInput | Yes |
Update one BusinessUnit
// Update one BusinessUnit
const businessUnit = await prisma.businessUnit.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BusinessUnitUpdateInput | BusinessUnitUncheckedUpdateInput | Yes |
| where | BusinessUnitWhereUniqueInput | Yes |
Delete zero or more BusinessUnit
// Delete a few BusinessUnit
const { count } = await prisma.businessUnit.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BusinessUnitWhereInput | No |
| limit | Int | No |
Update zero or one BusinessUnit
const { count } = await prisma.businessUnit.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BusinessUnitUpdateManyMutationInput | BusinessUnitUncheckedUpdateManyInput | Yes |
| where | BusinessUnitWhereInput | No |
| limit | Int | No |
Create or update one BusinessUnit
// Update or create a BusinessUnit
const businessUnit = await prisma.businessUnit.upsert({
create: {
// ... data to create a BusinessUnit
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the BusinessUnit we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | BusinessUnitWhereUniqueInput | Yes |
| create | BusinessUnitCreateInput | BusinessUnitUncheckedCreateInput | Yes |
| update | BusinessUnitUpdateInput | BusinessUnitUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@id |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| userId | String |
|
Yes | - |
| businessUnitId | String |
|
Yes | - |
| membershipType | BUMembershipType |
|
Yes | - |
| user | User |
|
Yes | - |
| businessUnit | BusinessUnit |
|
Yes | - |
Find zero or one UserBusinessUnit
// Get one UserBusinessUnit
const userBusinessUnit = await prisma.userBusinessUnit.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserBusinessUnitWhereUniqueInput | Yes |
Find first UserBusinessUnit
// Get one UserBusinessUnit
const userBusinessUnit = await prisma.userBusinessUnit.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserBusinessUnitWhereInput | No |
| orderBy | UserBusinessUnitOrderByWithRelationInput[] | UserBusinessUnitOrderByWithRelationInput | No |
| cursor | UserBusinessUnitWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserBusinessUnitScalarFieldEnum | UserBusinessUnitScalarFieldEnum[] | No |
Find zero or more UserBusinessUnit
// Get all UserBusinessUnit
const UserBusinessUnit = await prisma.userBusinessUnit.findMany()
// Get first 10 UserBusinessUnit
const UserBusinessUnit = await prisma.userBusinessUnit.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | UserBusinessUnitWhereInput | No |
| orderBy | UserBusinessUnitOrderByWithRelationInput[] | UserBusinessUnitOrderByWithRelationInput | No |
| cursor | UserBusinessUnitWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserBusinessUnitScalarFieldEnum | UserBusinessUnitScalarFieldEnum[] | No |
Create one UserBusinessUnit
// Create one UserBusinessUnit
const UserBusinessUnit = await prisma.userBusinessUnit.create({
data: {
// ... data to create a UserBusinessUnit
}
})
| Name | Type | Required |
|---|---|---|
| data | UserBusinessUnitCreateInput | UserBusinessUnitUncheckedCreateInput | Yes |
Delete one UserBusinessUnit
// Delete one UserBusinessUnit
const UserBusinessUnit = await prisma.userBusinessUnit.delete({
where: {
// ... filter to delete one UserBusinessUnit
}
})
| Name | Type | Required |
|---|---|---|
| where | UserBusinessUnitWhereUniqueInput | Yes |
Update one UserBusinessUnit
// Update one UserBusinessUnit
const userBusinessUnit = await prisma.userBusinessUnit.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserBusinessUnitUpdateInput | UserBusinessUnitUncheckedUpdateInput | Yes |
| where | UserBusinessUnitWhereUniqueInput | Yes |
Delete zero or more UserBusinessUnit
// Delete a few UserBusinessUnit
const { count } = await prisma.userBusinessUnit.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserBusinessUnitWhereInput | No |
| limit | Int | No |
Update zero or one UserBusinessUnit
const { count } = await prisma.userBusinessUnit.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserBusinessUnitUpdateManyMutationInput | UserBusinessUnitUncheckedUpdateManyInput | Yes |
| where | UserBusinessUnitWhereInput | No |
| limit | Int | No |
Create or update one UserBusinessUnit
// Update or create a UserBusinessUnit
const userBusinessUnit = await prisma.userBusinessUnit.upsert({
create: {
// ... data to create a UserBusinessUnit
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the UserBusinessUnit we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | UserBusinessUnitWhereUniqueInput | Yes |
| create | UserBusinessUnitCreateInput | UserBusinessUnitUncheckedCreateInput | Yes |
| update | UserBusinessUnitUpdateInput | UserBusinessUnitUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| name | String |
|
Yes | - |
| scope | RoleScope |
|
Yes | - |
| isBUAdmin | Boolean |
|
Yes | - |
| businessUnitId | String? |
|
No | - |
| businessUnit | BusinessUnit? |
|
No | - |
| userAssignments | UserRoleAssignment[] |
|
Yes | - |
| accessibleTemplates | TemplateInitiatorAccess[] |
|
Yes | - |
| approvalStepDefinitions | ApprovalStepDefinition[] |
|
Yes | - |
Find zero or one Role
// Get one Role
const role = await prisma.role.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RoleWhereUniqueInput | Yes |
Find first Role
// Get one Role
const role = await prisma.role.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RoleWhereInput | No |
| orderBy | RoleOrderByWithRelationInput[] | RoleOrderByWithRelationInput | No |
| cursor | RoleWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | RoleScalarFieldEnum | RoleScalarFieldEnum[] | No |
Find zero or more Role
// Get all Role
const Role = await prisma.role.findMany()
// Get first 10 Role
const Role = await prisma.role.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | RoleWhereInput | No |
| orderBy | RoleOrderByWithRelationInput[] | RoleOrderByWithRelationInput | No |
| cursor | RoleWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | RoleScalarFieldEnum | RoleScalarFieldEnum[] | No |
Create one Role
// Create one Role
const Role = await prisma.role.create({
data: {
// ... data to create a Role
}
})
| Name | Type | Required |
|---|---|---|
| data | RoleCreateInput | RoleUncheckedCreateInput | Yes |
Delete one Role
// Delete one Role
const Role = await prisma.role.delete({
where: {
// ... filter to delete one Role
}
})
| Name | Type | Required |
|---|---|---|
| where | RoleWhereUniqueInput | Yes |
Update one Role
// Update one Role
const role = await prisma.role.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | RoleUpdateInput | RoleUncheckedUpdateInput | Yes |
| where | RoleWhereUniqueInput | Yes |
Delete zero or more Role
// Delete a few Role
const { count } = await prisma.role.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RoleWhereInput | No |
| limit | Int | No |
Update zero or one Role
const { count } = await prisma.role.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | RoleUpdateManyMutationInput | RoleUncheckedUpdateManyInput | Yes |
| where | RoleWhereInput | No |
| limit | Int | No |
Create or update one Role
// Update or create a Role
const role = await prisma.role.upsert({
create: {
// ... data to create a Role
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Role we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | RoleWhereUniqueInput | Yes |
| create | RoleCreateInput | RoleUncheckedCreateInput | Yes |
| update | RoleUpdateInput | RoleUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@id |
|
Find zero or one UserRoleAssignment
// Get one UserRoleAssignment
const userRoleAssignment = await prisma.userRoleAssignment.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserRoleAssignmentWhereUniqueInput | Yes |
Find first UserRoleAssignment
// Get one UserRoleAssignment
const userRoleAssignment = await prisma.userRoleAssignment.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserRoleAssignmentWhereInput | No |
| orderBy | UserRoleAssignmentOrderByWithRelationInput[] | UserRoleAssignmentOrderByWithRelationInput | No |
| cursor | UserRoleAssignmentWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserRoleAssignmentScalarFieldEnum | UserRoleAssignmentScalarFieldEnum[] | No |
Find zero or more UserRoleAssignment
// Get all UserRoleAssignment
const UserRoleAssignment = await prisma.userRoleAssignment.findMany()
// Get first 10 UserRoleAssignment
const UserRoleAssignment = await prisma.userRoleAssignment.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | UserRoleAssignmentWhereInput | No |
| orderBy | UserRoleAssignmentOrderByWithRelationInput[] | UserRoleAssignmentOrderByWithRelationInput | No |
| cursor | UserRoleAssignmentWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserRoleAssignmentScalarFieldEnum | UserRoleAssignmentScalarFieldEnum[] | No |
Create one UserRoleAssignment
// Create one UserRoleAssignment
const UserRoleAssignment = await prisma.userRoleAssignment.create({
data: {
// ... data to create a UserRoleAssignment
}
})
| Name | Type | Required |
|---|---|---|
| data | UserRoleAssignmentCreateInput | UserRoleAssignmentUncheckedCreateInput | Yes |
Delete one UserRoleAssignment
// Delete one UserRoleAssignment
const UserRoleAssignment = await prisma.userRoleAssignment.delete({
where: {
// ... filter to delete one UserRoleAssignment
}
})
| Name | Type | Required |
|---|---|---|
| where | UserRoleAssignmentWhereUniqueInput | Yes |
Update one UserRoleAssignment
// Update one UserRoleAssignment
const userRoleAssignment = await prisma.userRoleAssignment.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserRoleAssignmentUpdateInput | UserRoleAssignmentUncheckedUpdateInput | Yes |
| where | UserRoleAssignmentWhereUniqueInput | Yes |
Delete zero or more UserRoleAssignment
// Delete a few UserRoleAssignment
const { count } = await prisma.userRoleAssignment.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserRoleAssignmentWhereInput | No |
| limit | Int | No |
Update zero or one UserRoleAssignment
const { count } = await prisma.userRoleAssignment.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserRoleAssignmentUpdateManyMutationInput | UserRoleAssignmentUncheckedUpdateManyInput | Yes |
| where | UserRoleAssignmentWhereInput | No |
| limit | Int | No |
Create or update one UserRoleAssignment
// Update or create a UserRoleAssignment
const userRoleAssignment = await prisma.userRoleAssignment.upsert({
create: {
// ... data to create a UserRoleAssignment
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the UserRoleAssignment we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | UserRoleAssignmentWhereUniqueInput | Yes |
| create | UserRoleAssignmentCreateInput | UserRoleAssignmentUncheckedCreateInput | Yes |
| update | UserRoleAssignmentUpdateInput | UserRoleAssignmentUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| name | String |
|
Yes | - |
| description | String? |
|
No | - |
| businessUnitId | String |
|
Yes | - |
| businessUnit | BusinessUnit |
|
Yes | - |
| fields | TemplateField[] |
|
Yes | - |
| initiatorAccess | TemplateInitiatorAccess[] |
|
Yes | - |
| approvalWorkflowId | String? |
|
No | - |
| approvalWorkflow | ApprovalWorkflow? |
|
No | - |
| requisitions | Requisition[] |
|
Yes | - |
Find zero or one RequisitionTemplate
// Get one RequisitionTemplate
const requisitionTemplate = await prisma.requisitionTemplate.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RequisitionTemplateWhereUniqueInput | Yes |
Find first RequisitionTemplate
// Get one RequisitionTemplate
const requisitionTemplate = await prisma.requisitionTemplate.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RequisitionTemplateWhereInput | No |
| orderBy | RequisitionTemplateOrderByWithRelationInput[] | RequisitionTemplateOrderByWithRelationInput | No |
| cursor | RequisitionTemplateWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | RequisitionTemplateScalarFieldEnum | RequisitionTemplateScalarFieldEnum[] | No |
Find zero or more RequisitionTemplate
// Get all RequisitionTemplate
const RequisitionTemplate = await prisma.requisitionTemplate.findMany()
// Get first 10 RequisitionTemplate
const RequisitionTemplate = await prisma.requisitionTemplate.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | RequisitionTemplateWhereInput | No |
| orderBy | RequisitionTemplateOrderByWithRelationInput[] | RequisitionTemplateOrderByWithRelationInput | No |
| cursor | RequisitionTemplateWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | RequisitionTemplateScalarFieldEnum | RequisitionTemplateScalarFieldEnum[] | No |
Create one RequisitionTemplate
// Create one RequisitionTemplate
const RequisitionTemplate = await prisma.requisitionTemplate.create({
data: {
// ... data to create a RequisitionTemplate
}
})
| Name | Type | Required |
|---|---|---|
| data | RequisitionTemplateCreateInput | RequisitionTemplateUncheckedCreateInput | Yes |
Delete one RequisitionTemplate
// Delete one RequisitionTemplate
const RequisitionTemplate = await prisma.requisitionTemplate.delete({
where: {
// ... filter to delete one RequisitionTemplate
}
})
| Name | Type | Required |
|---|---|---|
| where | RequisitionTemplateWhereUniqueInput | Yes |
Update one RequisitionTemplate
// Update one RequisitionTemplate
const requisitionTemplate = await prisma.requisitionTemplate.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | RequisitionTemplateUpdateInput | RequisitionTemplateUncheckedUpdateInput | Yes |
| where | RequisitionTemplateWhereUniqueInput | Yes |
Delete zero or more RequisitionTemplate
// Delete a few RequisitionTemplate
const { count } = await prisma.requisitionTemplate.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RequisitionTemplateWhereInput | No |
| limit | Int | No |
Update zero or one RequisitionTemplate
const { count } = await prisma.requisitionTemplate.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | RequisitionTemplateUpdateManyMutationInput | RequisitionTemplateUncheckedUpdateManyInput | Yes |
| where | RequisitionTemplateWhereInput | No |
| limit | Int | No |
Create or update one RequisitionTemplate
// Update or create a RequisitionTemplate
const requisitionTemplate = await prisma.requisitionTemplate.upsert({
create: {
// ... data to create a RequisitionTemplate
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the RequisitionTemplate we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | RequisitionTemplateWhereUniqueInput | Yes |
| create | RequisitionTemplateCreateInput | RequisitionTemplateUncheckedCreateInput | Yes |
| update | RequisitionTemplateUpdateInput | RequisitionTemplateUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| templateId | String |
|
Yes | - |
| template | RequisitionTemplate |
|
Yes | - |
| label | String |
|
Yes | - |
| fieldType | FieldType |
|
Yes | - |
| isRequired | Boolean |
|
Yes | - |
| placeholder | String? |
|
No | - |
| order | Int |
|
Yes | - |
| options | FieldOption[] |
|
Yes | - |
| listColumns | TemplateField[] |
|
Yes | - |
| parentListFieldId | String? |
|
No | - |
| parentListField | TemplateField? |
|
No | - |
| submittedValues | RequisitionValue[] |
|
Yes | - |
Find zero or one TemplateField
// Get one TemplateField
const templateField = await prisma.templateField.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TemplateFieldWhereUniqueInput | Yes |
Find first TemplateField
// Get one TemplateField
const templateField = await prisma.templateField.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TemplateFieldWhereInput | No |
| orderBy | TemplateFieldOrderByWithRelationInput[] | TemplateFieldOrderByWithRelationInput | No |
| cursor | TemplateFieldWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | TemplateFieldScalarFieldEnum | TemplateFieldScalarFieldEnum[] | No |
Find zero or more TemplateField
// Get all TemplateField
const TemplateField = await prisma.templateField.findMany()
// Get first 10 TemplateField
const TemplateField = await prisma.templateField.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | TemplateFieldWhereInput | No |
| orderBy | TemplateFieldOrderByWithRelationInput[] | TemplateFieldOrderByWithRelationInput | No |
| cursor | TemplateFieldWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | TemplateFieldScalarFieldEnum | TemplateFieldScalarFieldEnum[] | No |
Create one TemplateField
// Create one TemplateField
const TemplateField = await prisma.templateField.create({
data: {
// ... data to create a TemplateField
}
})
| Name | Type | Required |
|---|---|---|
| data | TemplateFieldCreateInput | TemplateFieldUncheckedCreateInput | Yes |
Delete one TemplateField
// Delete one TemplateField
const TemplateField = await prisma.templateField.delete({
where: {
// ... filter to delete one TemplateField
}
})
| Name | Type | Required |
|---|---|---|
| where | TemplateFieldWhereUniqueInput | Yes |
Update one TemplateField
// Update one TemplateField
const templateField = await prisma.templateField.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | TemplateFieldUpdateInput | TemplateFieldUncheckedUpdateInput | Yes |
| where | TemplateFieldWhereUniqueInput | Yes |
Delete zero or more TemplateField
// Delete a few TemplateField
const { count } = await prisma.templateField.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TemplateFieldWhereInput | No |
| limit | Int | No |
Update zero or one TemplateField
const { count } = await prisma.templateField.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | TemplateFieldUpdateManyMutationInput | TemplateFieldUncheckedUpdateManyInput | Yes |
| where | TemplateFieldWhereInput | No |
| limit | Int | No |
Create or update one TemplateField
// Update or create a TemplateField
const templateField = await prisma.templateField.upsert({
create: {
// ... data to create a TemplateField
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the TemplateField we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | TemplateFieldWhereUniqueInput | Yes |
| create | TemplateFieldCreateInput | TemplateFieldUncheckedCreateInput | Yes |
| update | TemplateFieldUpdateInput | TemplateFieldUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| fieldId | String |
|
Yes | - |
| field | TemplateField |
|
Yes | - |
| label | String |
|
Yes | - |
| value | String |
|
Yes | - |
| order | Int |
|
Yes | - |
Find zero or one FieldOption
// Get one FieldOption
const fieldOption = await prisma.fieldOption.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FieldOptionWhereUniqueInput | Yes |
Find first FieldOption
// Get one FieldOption
const fieldOption = await prisma.fieldOption.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FieldOptionWhereInput | No |
| orderBy | FieldOptionOrderByWithRelationInput[] | FieldOptionOrderByWithRelationInput | No |
| cursor | FieldOptionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | FieldOptionScalarFieldEnum | FieldOptionScalarFieldEnum[] | No |
Find zero or more FieldOption
// Get all FieldOption
const FieldOption = await prisma.fieldOption.findMany()
// Get first 10 FieldOption
const FieldOption = await prisma.fieldOption.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | FieldOptionWhereInput | No |
| orderBy | FieldOptionOrderByWithRelationInput[] | FieldOptionOrderByWithRelationInput | No |
| cursor | FieldOptionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | FieldOptionScalarFieldEnum | FieldOptionScalarFieldEnum[] | No |
Create one FieldOption
// Create one FieldOption
const FieldOption = await prisma.fieldOption.create({
data: {
// ... data to create a FieldOption
}
})
| Name | Type | Required |
|---|---|---|
| data | FieldOptionCreateInput | FieldOptionUncheckedCreateInput | Yes |
Delete one FieldOption
// Delete one FieldOption
const FieldOption = await prisma.fieldOption.delete({
where: {
// ... filter to delete one FieldOption
}
})
| Name | Type | Required |
|---|---|---|
| where | FieldOptionWhereUniqueInput | Yes |
Update one FieldOption
// Update one FieldOption
const fieldOption = await prisma.fieldOption.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | FieldOptionUpdateInput | FieldOptionUncheckedUpdateInput | Yes |
| where | FieldOptionWhereUniqueInput | Yes |
Delete zero or more FieldOption
// Delete a few FieldOption
const { count } = await prisma.fieldOption.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FieldOptionWhereInput | No |
| limit | Int | No |
Update zero or one FieldOption
const { count } = await prisma.fieldOption.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | FieldOptionUpdateManyMutationInput | FieldOptionUncheckedUpdateManyInput | Yes |
| where | FieldOptionWhereInput | No |
| limit | Int | No |
Create or update one FieldOption
// Update or create a FieldOption
const fieldOption = await prisma.fieldOption.upsert({
create: {
// ... data to create a FieldOption
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the FieldOption we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | FieldOptionWhereUniqueInput | Yes |
| create | FieldOptionCreateInput | FieldOptionUncheckedCreateInput | Yes |
| update | FieldOptionUpdateInput | FieldOptionUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@id |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| templateId | String |
|
Yes | - |
| roleId | String |
|
Yes | - |
| template | RequisitionTemplate |
|
Yes | - |
| role | Role |
|
Yes | - |
Find zero or one TemplateInitiatorAccess
// Get one TemplateInitiatorAccess
const templateInitiatorAccess = await prisma.templateInitiatorAccess.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TemplateInitiatorAccessWhereUniqueInput | Yes |
Find first TemplateInitiatorAccess
// Get one TemplateInitiatorAccess
const templateInitiatorAccess = await prisma.templateInitiatorAccess.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TemplateInitiatorAccessWhereInput | No |
| orderBy | TemplateInitiatorAccessOrderByWithRelationInput[] | TemplateInitiatorAccessOrderByWithRelationInput | No |
| cursor | TemplateInitiatorAccessWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | TemplateInitiatorAccessScalarFieldEnum | TemplateInitiatorAccessScalarFieldEnum[] | No |
Find zero or more TemplateInitiatorAccess
// Get all TemplateInitiatorAccess
const TemplateInitiatorAccess = await prisma.templateInitiatorAccess.findMany()
// Get first 10 TemplateInitiatorAccess
const TemplateInitiatorAccess = await prisma.templateInitiatorAccess.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | TemplateInitiatorAccessWhereInput | No |
| orderBy | TemplateInitiatorAccessOrderByWithRelationInput[] | TemplateInitiatorAccessOrderByWithRelationInput | No |
| cursor | TemplateInitiatorAccessWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | TemplateInitiatorAccessScalarFieldEnum | TemplateInitiatorAccessScalarFieldEnum[] | No |
Create one TemplateInitiatorAccess
// Create one TemplateInitiatorAccess
const TemplateInitiatorAccess = await prisma.templateInitiatorAccess.create({
data: {
// ... data to create a TemplateInitiatorAccess
}
})
| Name | Type | Required |
|---|---|---|
| data | TemplateInitiatorAccessCreateInput | TemplateInitiatorAccessUncheckedCreateInput | Yes |
Delete one TemplateInitiatorAccess
// Delete one TemplateInitiatorAccess
const TemplateInitiatorAccess = await prisma.templateInitiatorAccess.delete({
where: {
// ... filter to delete one TemplateInitiatorAccess
}
})
| Name | Type | Required |
|---|---|---|
| where | TemplateInitiatorAccessWhereUniqueInput | Yes |
Update one TemplateInitiatorAccess
// Update one TemplateInitiatorAccess
const templateInitiatorAccess = await prisma.templateInitiatorAccess.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | TemplateInitiatorAccessUpdateInput | TemplateInitiatorAccessUncheckedUpdateInput | Yes |
| where | TemplateInitiatorAccessWhereUniqueInput | Yes |
Delete zero or more TemplateInitiatorAccess
// Delete a few TemplateInitiatorAccess
const { count } = await prisma.templateInitiatorAccess.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TemplateInitiatorAccessWhereInput | No |
| limit | Int | No |
Update zero or one TemplateInitiatorAccess
const { count } = await prisma.templateInitiatorAccess.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | TemplateInitiatorAccessUpdateManyMutationInput | TemplateInitiatorAccessUncheckedUpdateManyInput | Yes |
| where | TemplateInitiatorAccessWhereInput | No |
| limit | Int | No |
Create or update one TemplateInitiatorAccess
// Update or create a TemplateInitiatorAccess
const templateInitiatorAccess = await prisma.templateInitiatorAccess.upsert({
create: {
// ... data to create a TemplateInitiatorAccess
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the TemplateInitiatorAccess we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | TemplateInitiatorAccessWhereUniqueInput | Yes |
| create | TemplateInitiatorAccessCreateInput | TemplateInitiatorAccessUncheckedCreateInput | Yes |
| update | TemplateInitiatorAccessUpdateInput | TemplateInitiatorAccessUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| name | String |
|
Yes | - |
| steps | ApprovalStepDefinition[] |
|
Yes | - |
| templates | RequisitionTemplate[] |
|
Yes | - |
Find zero or one ApprovalWorkflow
// Get one ApprovalWorkflow
const approvalWorkflow = await prisma.approvalWorkflow.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ApprovalWorkflowWhereUniqueInput | Yes |
Find first ApprovalWorkflow
// Get one ApprovalWorkflow
const approvalWorkflow = await prisma.approvalWorkflow.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ApprovalWorkflowWhereInput | No |
| orderBy | ApprovalWorkflowOrderByWithRelationInput[] | ApprovalWorkflowOrderByWithRelationInput | No |
| cursor | ApprovalWorkflowWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ApprovalWorkflowScalarFieldEnum | ApprovalWorkflowScalarFieldEnum[] | No |
Find zero or more ApprovalWorkflow
// Get all ApprovalWorkflow
const ApprovalWorkflow = await prisma.approvalWorkflow.findMany()
// Get first 10 ApprovalWorkflow
const ApprovalWorkflow = await prisma.approvalWorkflow.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ApprovalWorkflowWhereInput | No |
| orderBy | ApprovalWorkflowOrderByWithRelationInput[] | ApprovalWorkflowOrderByWithRelationInput | No |
| cursor | ApprovalWorkflowWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ApprovalWorkflowScalarFieldEnum | ApprovalWorkflowScalarFieldEnum[] | No |
Create one ApprovalWorkflow
// Create one ApprovalWorkflow
const ApprovalWorkflow = await prisma.approvalWorkflow.create({
data: {
// ... data to create a ApprovalWorkflow
}
})
| Name | Type | Required |
|---|---|---|
| data | ApprovalWorkflowCreateInput | ApprovalWorkflowUncheckedCreateInput | Yes |
Delete one ApprovalWorkflow
// Delete one ApprovalWorkflow
const ApprovalWorkflow = await prisma.approvalWorkflow.delete({
where: {
// ... filter to delete one ApprovalWorkflow
}
})
| Name | Type | Required |
|---|---|---|
| where | ApprovalWorkflowWhereUniqueInput | Yes |
Update one ApprovalWorkflow
// Update one ApprovalWorkflow
const approvalWorkflow = await prisma.approvalWorkflow.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ApprovalWorkflowUpdateInput | ApprovalWorkflowUncheckedUpdateInput | Yes |
| where | ApprovalWorkflowWhereUniqueInput | Yes |
Delete zero or more ApprovalWorkflow
// Delete a few ApprovalWorkflow
const { count } = await prisma.approvalWorkflow.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ApprovalWorkflowWhereInput | No |
| limit | Int | No |
Update zero or one ApprovalWorkflow
const { count } = await prisma.approvalWorkflow.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ApprovalWorkflowUpdateManyMutationInput | ApprovalWorkflowUncheckedUpdateManyInput | Yes |
| where | ApprovalWorkflowWhereInput | No |
| limit | Int | No |
Create or update one ApprovalWorkflow
// Update or create a ApprovalWorkflow
const approvalWorkflow = await prisma.approvalWorkflow.upsert({
create: {
// ... data to create a ApprovalWorkflow
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the ApprovalWorkflow we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ApprovalWorkflowWhereUniqueInput | Yes |
| create | ApprovalWorkflowCreateInput | ApprovalWorkflowUncheckedCreateInput | Yes |
| update | ApprovalWorkflowUpdateInput | ApprovalWorkflowUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| workflowId | String |
|
Yes | - |
| workflow | ApprovalWorkflow |
|
Yes | - |
| stepNumber | Int |
|
Yes | - |
| approverRoleId | String |
|
Yes | - |
| approverRole | Role |
|
Yes | - |
| requisitionApprovals | RequisitionApproval[] |
|
Yes | - |
Find zero or one ApprovalStepDefinition
// Get one ApprovalStepDefinition
const approvalStepDefinition = await prisma.approvalStepDefinition.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ApprovalStepDefinitionWhereUniqueInput | Yes |
Find first ApprovalStepDefinition
// Get one ApprovalStepDefinition
const approvalStepDefinition = await prisma.approvalStepDefinition.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ApprovalStepDefinitionWhereInput | No |
| orderBy | ApprovalStepDefinitionOrderByWithRelationInput[] | ApprovalStepDefinitionOrderByWithRelationInput | No |
| cursor | ApprovalStepDefinitionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ApprovalStepDefinitionScalarFieldEnum | ApprovalStepDefinitionScalarFieldEnum[] | No |
Find zero or more ApprovalStepDefinition
// Get all ApprovalStepDefinition
const ApprovalStepDefinition = await prisma.approvalStepDefinition.findMany()
// Get first 10 ApprovalStepDefinition
const ApprovalStepDefinition = await prisma.approvalStepDefinition.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ApprovalStepDefinitionWhereInput | No |
| orderBy | ApprovalStepDefinitionOrderByWithRelationInput[] | ApprovalStepDefinitionOrderByWithRelationInput | No |
| cursor | ApprovalStepDefinitionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ApprovalStepDefinitionScalarFieldEnum | ApprovalStepDefinitionScalarFieldEnum[] | No |
Create one ApprovalStepDefinition
// Create one ApprovalStepDefinition
const ApprovalStepDefinition = await prisma.approvalStepDefinition.create({
data: {
// ... data to create a ApprovalStepDefinition
}
})
| Name | Type | Required |
|---|---|---|
| data | ApprovalStepDefinitionCreateInput | ApprovalStepDefinitionUncheckedCreateInput | Yes |
Delete one ApprovalStepDefinition
// Delete one ApprovalStepDefinition
const ApprovalStepDefinition = await prisma.approvalStepDefinition.delete({
where: {
// ... filter to delete one ApprovalStepDefinition
}
})
| Name | Type | Required |
|---|---|---|
| where | ApprovalStepDefinitionWhereUniqueInput | Yes |
Update one ApprovalStepDefinition
// Update one ApprovalStepDefinition
const approvalStepDefinition = await prisma.approvalStepDefinition.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ApprovalStepDefinitionUpdateInput | ApprovalStepDefinitionUncheckedUpdateInput | Yes |
| where | ApprovalStepDefinitionWhereUniqueInput | Yes |
Delete zero or more ApprovalStepDefinition
// Delete a few ApprovalStepDefinition
const { count } = await prisma.approvalStepDefinition.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ApprovalStepDefinitionWhereInput | No |
| limit | Int | No |
Update zero or one ApprovalStepDefinition
const { count } = await prisma.approvalStepDefinition.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ApprovalStepDefinitionUpdateManyMutationInput | ApprovalStepDefinitionUncheckedUpdateManyInput | Yes |
| where | ApprovalStepDefinitionWhereInput | No |
| limit | Int | No |
Create or update one ApprovalStepDefinition
// Update or create a ApprovalStepDefinition
const approvalStepDefinition = await prisma.approvalStepDefinition.upsert({
create: {
// ... data to create a ApprovalStepDefinition
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the ApprovalStepDefinition we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ApprovalStepDefinitionWhereUniqueInput | Yes |
| create | ApprovalStepDefinitionCreateInput | ApprovalStepDefinitionUncheckedCreateInput | Yes |
| update | ApprovalStepDefinitionUpdateInput | ApprovalStepDefinitionUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| initiatorId | String |
|
Yes | - |
| initiator | User |
|
Yes | - |
| businessUnitId | String |
|
Yes | - |
| fromBU | BusinessUnit |
|
Yes | - |
| templateId | String |
|
Yes | - |
| template | RequisitionTemplate |
|
Yes | - |
| overallStatus | RequisitionStatus |
|
Yes | - |
| approvalHistory | RequisitionApproval[] |
|
Yes | - |
| submittedValues | RequisitionValue[] |
|
Yes | - |
| attachments | Attachment[] |
|
Yes | - |
| actionLog | Comment[] |
|
Yes | - |
| notifications | Notification[] |
|
Yes | - |
| tags | RequisitionTag[] |
|
Yes | - |
Find zero or one Requisition
// Get one Requisition
const requisition = await prisma.requisition.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RequisitionWhereUniqueInput | Yes |
Find first Requisition
// Get one Requisition
const requisition = await prisma.requisition.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RequisitionWhereInput | No |
| orderBy | RequisitionOrderByWithRelationInput[] | RequisitionOrderByWithRelationInput | No |
| cursor | RequisitionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | RequisitionScalarFieldEnum | RequisitionScalarFieldEnum[] | No |
Find zero or more Requisition
// Get all Requisition
const Requisition = await prisma.requisition.findMany()
// Get first 10 Requisition
const Requisition = await prisma.requisition.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | RequisitionWhereInput | No |
| orderBy | RequisitionOrderByWithRelationInput[] | RequisitionOrderByWithRelationInput | No |
| cursor | RequisitionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | RequisitionScalarFieldEnum | RequisitionScalarFieldEnum[] | No |
Create one Requisition
// Create one Requisition
const Requisition = await prisma.requisition.create({
data: {
// ... data to create a Requisition
}
})
| Name | Type | Required |
|---|---|---|
| data | RequisitionCreateInput | RequisitionUncheckedCreateInput | Yes |
Delete one Requisition
// Delete one Requisition
const Requisition = await prisma.requisition.delete({
where: {
// ... filter to delete one Requisition
}
})
| Name | Type | Required |
|---|---|---|
| where | RequisitionWhereUniqueInput | Yes |
Update one Requisition
// Update one Requisition
const requisition = await prisma.requisition.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | RequisitionUpdateInput | RequisitionUncheckedUpdateInput | Yes |
| where | RequisitionWhereUniqueInput | Yes |
Delete zero or more Requisition
// Delete a few Requisition
const { count } = await prisma.requisition.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RequisitionWhereInput | No |
| limit | Int | No |
Update zero or one Requisition
const { count } = await prisma.requisition.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | RequisitionUpdateManyMutationInput | RequisitionUncheckedUpdateManyInput | Yes |
| where | RequisitionWhereInput | No |
| limit | Int | No |
Create or update one Requisition
// Update or create a Requisition
const requisition = await prisma.requisition.upsert({
create: {
// ... data to create a Requisition
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Requisition we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | RequisitionWhereUniqueInput | Yes |
| create | RequisitionCreateInput | RequisitionUncheckedCreateInput | Yes |
| update | RequisitionUpdateInput | RequisitionUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| requisitionId | String |
|
Yes | - |
| requisition | Requisition |
|
Yes | - |
| stepDefinitionId | String |
|
Yes | - |
| stepDefinition | ApprovalStepDefinition |
|
Yes | - |
| approverId | String? |
|
No | - |
| approver | User? |
|
No | - |
| status | ApprovalStatus |
|
Yes | - |
| actionedAt | DateTime? |
|
No | - |
Find zero or one RequisitionApproval
// Get one RequisitionApproval
const requisitionApproval = await prisma.requisitionApproval.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RequisitionApprovalWhereUniqueInput | Yes |
Find first RequisitionApproval
// Get one RequisitionApproval
const requisitionApproval = await prisma.requisitionApproval.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RequisitionApprovalWhereInput | No |
| orderBy | RequisitionApprovalOrderByWithRelationInput[] | RequisitionApprovalOrderByWithRelationInput | No |
| cursor | RequisitionApprovalWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | RequisitionApprovalScalarFieldEnum | RequisitionApprovalScalarFieldEnum[] | No |
Find zero or more RequisitionApproval
// Get all RequisitionApproval
const RequisitionApproval = await prisma.requisitionApproval.findMany()
// Get first 10 RequisitionApproval
const RequisitionApproval = await prisma.requisitionApproval.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | RequisitionApprovalWhereInput | No |
| orderBy | RequisitionApprovalOrderByWithRelationInput[] | RequisitionApprovalOrderByWithRelationInput | No |
| cursor | RequisitionApprovalWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | RequisitionApprovalScalarFieldEnum | RequisitionApprovalScalarFieldEnum[] | No |
Create one RequisitionApproval
// Create one RequisitionApproval
const RequisitionApproval = await prisma.requisitionApproval.create({
data: {
// ... data to create a RequisitionApproval
}
})
| Name | Type | Required |
|---|---|---|
| data | RequisitionApprovalCreateInput | RequisitionApprovalUncheckedCreateInput | Yes |
Delete one RequisitionApproval
// Delete one RequisitionApproval
const RequisitionApproval = await prisma.requisitionApproval.delete({
where: {
// ... filter to delete one RequisitionApproval
}
})
| Name | Type | Required |
|---|---|---|
| where | RequisitionApprovalWhereUniqueInput | Yes |
Update one RequisitionApproval
// Update one RequisitionApproval
const requisitionApproval = await prisma.requisitionApproval.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | RequisitionApprovalUpdateInput | RequisitionApprovalUncheckedUpdateInput | Yes |
| where | RequisitionApprovalWhereUniqueInput | Yes |
Delete zero or more RequisitionApproval
// Delete a few RequisitionApproval
const { count } = await prisma.requisitionApproval.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RequisitionApprovalWhereInput | No |
| limit | Int | No |
Update zero or one RequisitionApproval
const { count } = await prisma.requisitionApproval.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | RequisitionApprovalUpdateManyMutationInput | RequisitionApprovalUncheckedUpdateManyInput | Yes |
| where | RequisitionApprovalWhereInput | No |
| limit | Int | No |
Create or update one RequisitionApproval
// Update or create a RequisitionApproval
const requisitionApproval = await prisma.requisitionApproval.upsert({
create: {
// ... data to create a RequisitionApproval
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the RequisitionApproval we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | RequisitionApprovalWhereUniqueInput | Yes |
| create | RequisitionApprovalCreateInput | RequisitionApprovalUncheckedCreateInput | Yes |
| update | RequisitionApprovalUpdateInput | RequisitionApprovalUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| requisitionId | String |
|
Yes | - |
| requisition | Requisition |
|
Yes | - |
| templateFieldId | String |
|
Yes | - |
| templateField | TemplateField |
|
Yes | - |
| value | String |
|
Yes | - |
| rowIndex | Int? |
|
No | - |
Find zero or one RequisitionValue
// Get one RequisitionValue
const requisitionValue = await prisma.requisitionValue.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RequisitionValueWhereUniqueInput | Yes |
Find first RequisitionValue
// Get one RequisitionValue
const requisitionValue = await prisma.requisitionValue.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RequisitionValueWhereInput | No |
| orderBy | RequisitionValueOrderByWithRelationInput[] | RequisitionValueOrderByWithRelationInput | No |
| cursor | RequisitionValueWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | RequisitionValueScalarFieldEnum | RequisitionValueScalarFieldEnum[] | No |
Find zero or more RequisitionValue
// Get all RequisitionValue
const RequisitionValue = await prisma.requisitionValue.findMany()
// Get first 10 RequisitionValue
const RequisitionValue = await prisma.requisitionValue.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | RequisitionValueWhereInput | No |
| orderBy | RequisitionValueOrderByWithRelationInput[] | RequisitionValueOrderByWithRelationInput | No |
| cursor | RequisitionValueWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | RequisitionValueScalarFieldEnum | RequisitionValueScalarFieldEnum[] | No |
Create one RequisitionValue
// Create one RequisitionValue
const RequisitionValue = await prisma.requisitionValue.create({
data: {
// ... data to create a RequisitionValue
}
})
| Name | Type | Required |
|---|---|---|
| data | RequisitionValueCreateInput | RequisitionValueUncheckedCreateInput | Yes |
Delete one RequisitionValue
// Delete one RequisitionValue
const RequisitionValue = await prisma.requisitionValue.delete({
where: {
// ... filter to delete one RequisitionValue
}
})
| Name | Type | Required |
|---|---|---|
| where | RequisitionValueWhereUniqueInput | Yes |
Update one RequisitionValue
// Update one RequisitionValue
const requisitionValue = await prisma.requisitionValue.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | RequisitionValueUpdateInput | RequisitionValueUncheckedUpdateInput | Yes |
| where | RequisitionValueWhereUniqueInput | Yes |
Delete zero or more RequisitionValue
// Delete a few RequisitionValue
const { count } = await prisma.requisitionValue.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RequisitionValueWhereInput | No |
| limit | Int | No |
Update zero or one RequisitionValue
const { count } = await prisma.requisitionValue.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | RequisitionValueUpdateManyMutationInput | RequisitionValueUncheckedUpdateManyInput | Yes |
| where | RequisitionValueWhereInput | No |
| limit | Int | No |
Create or update one RequisitionValue
// Update or create a RequisitionValue
const requisitionValue = await prisma.requisitionValue.upsert({
create: {
// ... data to create a RequisitionValue
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the RequisitionValue we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | RequisitionValueWhereUniqueInput | Yes |
| create | RequisitionValueCreateInput | RequisitionValueUncheckedCreateInput | Yes |
| update | RequisitionValueUpdateInput | RequisitionValueUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| url | String |
|
Yes | - |
| filename | String |
|
Yes | - |
| filetype | String |
|
Yes | - |
| size | Int? |
|
No | - |
| uploaderId | String |
|
Yes | - |
| uploader | User |
|
Yes | - |
| requisitionId | String? |
|
No | - |
| requisition | Requisition? |
|
No | - |
| commentId | String? |
|
No | - |
| comment | Comment? |
|
No | - |
| chatMessageId | String? |
|
No | - |
| chatMessage | ChatMessage? |
|
No | - |
Find zero or one Attachment
// Get one Attachment
const attachment = await prisma.attachment.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AttachmentWhereUniqueInput | Yes |
Find first Attachment
// Get one Attachment
const attachment = await prisma.attachment.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AttachmentWhereInput | No |
| orderBy | AttachmentOrderByWithRelationInput[] | AttachmentOrderByWithRelationInput | No |
| cursor | AttachmentWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | AttachmentScalarFieldEnum | AttachmentScalarFieldEnum[] | No |
Find zero or more Attachment
// Get all Attachment
const Attachment = await prisma.attachment.findMany()
// Get first 10 Attachment
const Attachment = await prisma.attachment.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | AttachmentWhereInput | No |
| orderBy | AttachmentOrderByWithRelationInput[] | AttachmentOrderByWithRelationInput | No |
| cursor | AttachmentWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | AttachmentScalarFieldEnum | AttachmentScalarFieldEnum[] | No |
Create one Attachment
// Create one Attachment
const Attachment = await prisma.attachment.create({
data: {
// ... data to create a Attachment
}
})
| Name | Type | Required |
|---|---|---|
| data | AttachmentCreateInput | AttachmentUncheckedCreateInput | Yes |
Delete one Attachment
// Delete one Attachment
const Attachment = await prisma.attachment.delete({
where: {
// ... filter to delete one Attachment
}
})
| Name | Type | Required |
|---|---|---|
| where | AttachmentWhereUniqueInput | Yes |
Update one Attachment
// Update one Attachment
const attachment = await prisma.attachment.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | AttachmentUpdateInput | AttachmentUncheckedUpdateInput | Yes |
| where | AttachmentWhereUniqueInput | Yes |
Delete zero or more Attachment
// Delete a few Attachment
const { count } = await prisma.attachment.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AttachmentWhereInput | No |
| limit | Int | No |
Update zero or one Attachment
const { count } = await prisma.attachment.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | AttachmentUpdateManyMutationInput | AttachmentUncheckedUpdateManyInput | Yes |
| where | AttachmentWhereInput | No |
| limit | Int | No |
Create or update one Attachment
// Update or create a Attachment
const attachment = await prisma.attachment.upsert({
create: {
// ... data to create a Attachment
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Attachment we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | AttachmentWhereUniqueInput | Yes |
| create | AttachmentCreateInput | AttachmentUncheckedCreateInput | Yes |
| update | AttachmentUpdateInput | AttachmentUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| content | String |
|
Yes | - |
| action | ActionType |
|
Yes | - |
| authorId | String |
|
Yes | - |
| author | User |
|
Yes | - |
| requisitionId | String |
|
Yes | - |
| requisition | Requisition |
|
Yes | - |
| attachments | Attachment[] |
|
Yes | - |
Find zero or one Comment
// Get one Comment
const comment = await prisma.comment.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CommentWhereUniqueInput | Yes |
Find first Comment
// Get one Comment
const comment = await prisma.comment.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CommentWhereInput | No |
| orderBy | CommentOrderByWithRelationInput[] | CommentOrderByWithRelationInput | No |
| cursor | CommentWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CommentScalarFieldEnum | CommentScalarFieldEnum[] | No |
Find zero or more Comment
// Get all Comment
const Comment = await prisma.comment.findMany()
// Get first 10 Comment
const Comment = await prisma.comment.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | CommentWhereInput | No |
| orderBy | CommentOrderByWithRelationInput[] | CommentOrderByWithRelationInput | No |
| cursor | CommentWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CommentScalarFieldEnum | CommentScalarFieldEnum[] | No |
Create one Comment
// Create one Comment
const Comment = await prisma.comment.create({
data: {
// ... data to create a Comment
}
})
| Name | Type | Required |
|---|---|---|
| data | CommentCreateInput | CommentUncheckedCreateInput | Yes |
Delete one Comment
// Delete one Comment
const Comment = await prisma.comment.delete({
where: {
// ... filter to delete one Comment
}
})
| Name | Type | Required |
|---|---|---|
| where | CommentWhereUniqueInput | Yes |
Update one Comment
// Update one Comment
const comment = await prisma.comment.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CommentUpdateInput | CommentUncheckedUpdateInput | Yes |
| where | CommentWhereUniqueInput | Yes |
Delete zero or more Comment
// Delete a few Comment
const { count } = await prisma.comment.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CommentWhereInput | No |
| limit | Int | No |
Update zero or one Comment
const { count } = await prisma.comment.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CommentUpdateManyMutationInput | CommentUncheckedUpdateManyInput | Yes |
| where | CommentWhereInput | No |
| limit | Int | No |
Create or update one Comment
// Update or create a Comment
const comment = await prisma.comment.upsert({
create: {
// ... data to create a Comment
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Comment we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | CommentWhereUniqueInput | Yes |
| create | CommentCreateInput | CommentUncheckedCreateInput | Yes |
| update | CommentUpdateInput | CommentUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| message | String |
|
Yes | - |
| isRead | Boolean |
|
Yes | - |
| recipientId | String |
|
Yes | - |
| recipient | User |
|
Yes | - |
| requisitionId | String? |
|
No | - |
| requisition | Requisition? |
|
No | - |
Find zero or one Notification
// Get one Notification
const notification = await prisma.notification.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | NotificationWhereUniqueInput | Yes |
Find first Notification
// Get one Notification
const notification = await prisma.notification.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | NotificationWhereInput | No |
| orderBy | NotificationOrderByWithRelationInput[] | NotificationOrderByWithRelationInput | No |
| cursor | NotificationWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | NotificationScalarFieldEnum | NotificationScalarFieldEnum[] | No |
Find zero or more Notification
// Get all Notification
const Notification = await prisma.notification.findMany()
// Get first 10 Notification
const Notification = await prisma.notification.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | NotificationWhereInput | No |
| orderBy | NotificationOrderByWithRelationInput[] | NotificationOrderByWithRelationInput | No |
| cursor | NotificationWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | NotificationScalarFieldEnum | NotificationScalarFieldEnum[] | No |
Create one Notification
// Create one Notification
const Notification = await prisma.notification.create({
data: {
// ... data to create a Notification
}
})
| Name | Type | Required |
|---|---|---|
| data | NotificationCreateInput | NotificationUncheckedCreateInput | Yes |
Delete one Notification
// Delete one Notification
const Notification = await prisma.notification.delete({
where: {
// ... filter to delete one Notification
}
})
| Name | Type | Required |
|---|---|---|
| where | NotificationWhereUniqueInput | Yes |
Update one Notification
// Update one Notification
const notification = await prisma.notification.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | NotificationUpdateInput | NotificationUncheckedUpdateInput | Yes |
| where | NotificationWhereUniqueInput | Yes |
Delete zero or more Notification
// Delete a few Notification
const { count } = await prisma.notification.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | NotificationWhereInput | No |
| limit | Int | No |
Update zero or one Notification
const { count } = await prisma.notification.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | NotificationUpdateManyMutationInput | NotificationUncheckedUpdateManyInput | Yes |
| where | NotificationWhereInput | No |
| limit | Int | No |
Create or update one Notification
// Update or create a Notification
const notification = await prisma.notification.upsert({
create: {
// ... data to create a Notification
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Notification we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | NotificationWhereUniqueInput | Yes |
| create | NotificationCreateInput | NotificationUncheckedCreateInput | Yes |
| update | NotificationUpdateInput | NotificationUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| label | String |
|
Yes | - |
| color | String |
|
Yes | - |
| creatorId | String |
|
Yes | - |
| creator | User |
|
Yes | - |
| requisitions | RequisitionTag[] |
|
Yes | - |
Find zero or one Tag
// Get one Tag
const tag = await prisma.tag.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TagWhereUniqueInput | Yes |
Find first Tag
// Get one Tag
const tag = await prisma.tag.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TagWhereInput | No |
| orderBy | TagOrderByWithRelationInput[] | TagOrderByWithRelationInput | No |
| cursor | TagWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | TagScalarFieldEnum | TagScalarFieldEnum[] | No |
Find zero or more Tag
// Get all Tag
const Tag = await prisma.tag.findMany()
// Get first 10 Tag
const Tag = await prisma.tag.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | TagWhereInput | No |
| orderBy | TagOrderByWithRelationInput[] | TagOrderByWithRelationInput | No |
| cursor | TagWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | TagScalarFieldEnum | TagScalarFieldEnum[] | No |
Create one Tag
// Create one Tag
const Tag = await prisma.tag.create({
data: {
// ... data to create a Tag
}
})
| Name | Type | Required |
|---|---|---|
| data | TagCreateInput | TagUncheckedCreateInput | Yes |
Delete one Tag
// Delete one Tag
const Tag = await prisma.tag.delete({
where: {
// ... filter to delete one Tag
}
})
| Name | Type | Required |
|---|---|---|
| where | TagWhereUniqueInput | Yes |
Update one Tag
// Update one Tag
const tag = await prisma.tag.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | TagUpdateInput | TagUncheckedUpdateInput | Yes |
| where | TagWhereUniqueInput | Yes |
Delete zero or more Tag
// Delete a few Tag
const { count } = await prisma.tag.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TagWhereInput | No |
| limit | Int | No |
Update zero or one Tag
const { count } = await prisma.tag.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | TagUpdateManyMutationInput | TagUncheckedUpdateManyInput | Yes |
| where | TagWhereInput | No |
| limit | Int | No |
Create or update one Tag
// Update or create a Tag
const tag = await prisma.tag.upsert({
create: {
// ... data to create a Tag
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Tag we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | TagWhereUniqueInput | Yes |
| create | TagCreateInput | TagUncheckedCreateInput | Yes |
| update | TagUpdateInput | TagUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@id |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| requisitionId | String |
|
Yes | - |
| tagId | String |
|
Yes | - |
| requisition | Requisition |
|
Yes | - |
| tag | Tag |
|
Yes | - |
| assignedBy | User |
|
Yes | - |
| assignedById | String |
|
Yes | - |
| assignedAt | DateTime |
|
Yes | - |
Find zero or one RequisitionTag
// Get one RequisitionTag
const requisitionTag = await prisma.requisitionTag.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RequisitionTagWhereUniqueInput | Yes |
Find first RequisitionTag
// Get one RequisitionTag
const requisitionTag = await prisma.requisitionTag.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RequisitionTagWhereInput | No |
| orderBy | RequisitionTagOrderByWithRelationInput[] | RequisitionTagOrderByWithRelationInput | No |
| cursor | RequisitionTagWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | RequisitionTagScalarFieldEnum | RequisitionTagScalarFieldEnum[] | No |
Find zero or more RequisitionTag
// Get all RequisitionTag
const RequisitionTag = await prisma.requisitionTag.findMany()
// Get first 10 RequisitionTag
const RequisitionTag = await prisma.requisitionTag.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | RequisitionTagWhereInput | No |
| orderBy | RequisitionTagOrderByWithRelationInput[] | RequisitionTagOrderByWithRelationInput | No |
| cursor | RequisitionTagWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | RequisitionTagScalarFieldEnum | RequisitionTagScalarFieldEnum[] | No |
Create one RequisitionTag
// Create one RequisitionTag
const RequisitionTag = await prisma.requisitionTag.create({
data: {
// ... data to create a RequisitionTag
}
})
| Name | Type | Required |
|---|---|---|
| data | RequisitionTagCreateInput | RequisitionTagUncheckedCreateInput | Yes |
Delete one RequisitionTag
// Delete one RequisitionTag
const RequisitionTag = await prisma.requisitionTag.delete({
where: {
// ... filter to delete one RequisitionTag
}
})
| Name | Type | Required |
|---|---|---|
| where | RequisitionTagWhereUniqueInput | Yes |
Update one RequisitionTag
// Update one RequisitionTag
const requisitionTag = await prisma.requisitionTag.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | RequisitionTagUpdateInput | RequisitionTagUncheckedUpdateInput | Yes |
| where | RequisitionTagWhereUniqueInput | Yes |
Delete zero or more RequisitionTag
// Delete a few RequisitionTag
const { count } = await prisma.requisitionTag.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RequisitionTagWhereInput | No |
| limit | Int | No |
Update zero or one RequisitionTag
const { count } = await prisma.requisitionTag.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | RequisitionTagUpdateManyMutationInput | RequisitionTagUncheckedUpdateManyInput | Yes |
| where | RequisitionTagWhereInput | No |
| limit | Int | No |
Create or update one RequisitionTag
// Update or create a RequisitionTag
const requisitionTag = await prisma.requisitionTag.upsert({
create: {
// ... data to create a RequisitionTag
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the RequisitionTag we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | RequisitionTagWhereUniqueInput | Yes |
| create | RequisitionTagCreateInput | RequisitionTagUncheckedCreateInput | Yes |
| update | RequisitionTagUpdateInput | RequisitionTagUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| chatType | ChatType |
|
Yes | - |
| groupName | String? |
|
No | - |
| groupImageUrl | String? |
|
No | - |
| creatorId | String? |
|
No | - |
| creator | User? |
|
No | - |
| participants | ChatParticipant[] |
|
Yes | - |
| messages | ChatMessage[] |
|
Yes | - |
Find zero or one Chat
// Get one Chat
const chat = await prisma.chat.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ChatWhereUniqueInput | Yes |
Find first Chat
// Get one Chat
const chat = await prisma.chat.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ChatWhereInput | No |
| orderBy | ChatOrderByWithRelationInput[] | ChatOrderByWithRelationInput | No |
| cursor | ChatWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ChatScalarFieldEnum | ChatScalarFieldEnum[] | No |
Find zero or more Chat
// Get all Chat
const Chat = await prisma.chat.findMany()
// Get first 10 Chat
const Chat = await prisma.chat.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ChatWhereInput | No |
| orderBy | ChatOrderByWithRelationInput[] | ChatOrderByWithRelationInput | No |
| cursor | ChatWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ChatScalarFieldEnum | ChatScalarFieldEnum[] | No |
Create one Chat
// Create one Chat
const Chat = await prisma.chat.create({
data: {
// ... data to create a Chat
}
})
| Name | Type | Required |
|---|---|---|
| data | ChatCreateInput | ChatUncheckedCreateInput | Yes |
Delete one Chat
// Delete one Chat
const Chat = await prisma.chat.delete({
where: {
// ... filter to delete one Chat
}
})
| Name | Type | Required |
|---|---|---|
| where | ChatWhereUniqueInput | Yes |
Update one Chat
// Update one Chat
const chat = await prisma.chat.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ChatUpdateInput | ChatUncheckedUpdateInput | Yes |
| where | ChatWhereUniqueInput | Yes |
Delete zero or more Chat
// Delete a few Chat
const { count } = await prisma.chat.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ChatWhereInput | No |
| limit | Int | No |
Update zero or one Chat
const { count } = await prisma.chat.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ChatUpdateManyMutationInput | ChatUncheckedUpdateManyInput | Yes |
| where | ChatWhereInput | No |
| limit | Int | No |
Create or update one Chat
// Update or create a Chat
const chat = await prisma.chat.upsert({
create: {
// ... data to create a Chat
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Chat we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ChatWhereUniqueInput | Yes |
| create | ChatCreateInput | ChatUncheckedCreateInput | Yes |
| update | ChatUpdateInput | ChatUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@id |
|
Find zero or one ChatParticipant
// Get one ChatParticipant
const chatParticipant = await prisma.chatParticipant.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ChatParticipantWhereUniqueInput | Yes |
Find first ChatParticipant
// Get one ChatParticipant
const chatParticipant = await prisma.chatParticipant.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ChatParticipantWhereInput | No |
| orderBy | ChatParticipantOrderByWithRelationInput[] | ChatParticipantOrderByWithRelationInput | No |
| cursor | ChatParticipantWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ChatParticipantScalarFieldEnum | ChatParticipantScalarFieldEnum[] | No |
Find zero or more ChatParticipant
// Get all ChatParticipant
const ChatParticipant = await prisma.chatParticipant.findMany()
// Get first 10 ChatParticipant
const ChatParticipant = await prisma.chatParticipant.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ChatParticipantWhereInput | No |
| orderBy | ChatParticipantOrderByWithRelationInput[] | ChatParticipantOrderByWithRelationInput | No |
| cursor | ChatParticipantWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ChatParticipantScalarFieldEnum | ChatParticipantScalarFieldEnum[] | No |
Create one ChatParticipant
// Create one ChatParticipant
const ChatParticipant = await prisma.chatParticipant.create({
data: {
// ... data to create a ChatParticipant
}
})
| Name | Type | Required |
|---|---|---|
| data | ChatParticipantCreateInput | ChatParticipantUncheckedCreateInput | Yes |
Delete one ChatParticipant
// Delete one ChatParticipant
const ChatParticipant = await prisma.chatParticipant.delete({
where: {
// ... filter to delete one ChatParticipant
}
})
| Name | Type | Required |
|---|---|---|
| where | ChatParticipantWhereUniqueInput | Yes |
Update one ChatParticipant
// Update one ChatParticipant
const chatParticipant = await prisma.chatParticipant.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ChatParticipantUpdateInput | ChatParticipantUncheckedUpdateInput | Yes |
| where | ChatParticipantWhereUniqueInput | Yes |
Delete zero or more ChatParticipant
// Delete a few ChatParticipant
const { count } = await prisma.chatParticipant.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ChatParticipantWhereInput | No |
| limit | Int | No |
Update zero or one ChatParticipant
const { count } = await prisma.chatParticipant.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ChatParticipantUpdateManyMutationInput | ChatParticipantUncheckedUpdateManyInput | Yes |
| where | ChatParticipantWhereInput | No |
| limit | Int | No |
Create or update one ChatParticipant
// Update or create a ChatParticipant
const chatParticipant = await prisma.chatParticipant.upsert({
create: {
// ... data to create a ChatParticipant
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the ChatParticipant we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ChatParticipantWhereUniqueInput | Yes |
| create | ChatParticipantCreateInput | ChatParticipantUncheckedCreateInput | Yes |
| update | ChatParticipantUpdateInput | ChatParticipantUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| content | String? |
|
No | - |
| senderId | String |
|
Yes | - |
| sender | User |
|
Yes | - |
| chatId | String |
|
Yes | - |
| chat | Chat |
|
Yes | - |
| attachments | Attachment[] |
|
Yes | - |
Find zero or one ChatMessage
// Get one ChatMessage
const chatMessage = await prisma.chatMessage.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ChatMessageWhereUniqueInput | Yes |
Find first ChatMessage
// Get one ChatMessage
const chatMessage = await prisma.chatMessage.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ChatMessageWhereInput | No |
| orderBy | ChatMessageOrderByWithRelationInput[] | ChatMessageOrderByWithRelationInput | No |
| cursor | ChatMessageWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ChatMessageScalarFieldEnum | ChatMessageScalarFieldEnum[] | No |
Find zero or more ChatMessage
// Get all ChatMessage
const ChatMessage = await prisma.chatMessage.findMany()
// Get first 10 ChatMessage
const ChatMessage = await prisma.chatMessage.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ChatMessageWhereInput | No |
| orderBy | ChatMessageOrderByWithRelationInput[] | ChatMessageOrderByWithRelationInput | No |
| cursor | ChatMessageWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ChatMessageScalarFieldEnum | ChatMessageScalarFieldEnum[] | No |
Create one ChatMessage
// Create one ChatMessage
const ChatMessage = await prisma.chatMessage.create({
data: {
// ... data to create a ChatMessage
}
})
| Name | Type | Required |
|---|---|---|
| data | ChatMessageCreateInput | ChatMessageUncheckedCreateInput | Yes |
Delete one ChatMessage
// Delete one ChatMessage
const ChatMessage = await prisma.chatMessage.delete({
where: {
// ... filter to delete one ChatMessage
}
})
| Name | Type | Required |
|---|---|---|
| where | ChatMessageWhereUniqueInput | Yes |
Update one ChatMessage
// Update one ChatMessage
const chatMessage = await prisma.chatMessage.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ChatMessageUpdateInput | ChatMessageUncheckedUpdateInput | Yes |
| where | ChatMessageWhereUniqueInput | Yes |
Delete zero or more ChatMessage
// Delete a few ChatMessage
const { count } = await prisma.chatMessage.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ChatMessageWhereInput | No |
| limit | Int | No |
Update zero or one ChatMessage
const { count } = await prisma.chatMessage.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ChatMessageUpdateManyMutationInput | ChatMessageUncheckedUpdateManyInput | Yes |
| where | ChatMessageWhereInput | No |
| limit | Int | No |
Create or update one ChatMessage
// Update or create a ChatMessage
const chatMessage = await prisma.chatMessage.upsert({
create: {
// ... data to create a ChatMessage
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the ChatMessage we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ChatMessageWhereUniqueInput | Yes |
| create | ChatMessageCreateInput | ChatMessageUncheckedCreateInput | Yes |
| update | ChatMessageUpdateInput | ChatMessageUncheckedUpdateInput | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| firstName | SortOrder | SortOrderInput | No |
| lastName | SortOrder | SortOrderInput | No |
| name | SortOrder | No |
| SortOrder | No | |
| emailVerified | SortOrder | SortOrderInput | No |
| image | SortOrder | SortOrderInput | No |
| status | SortOrder | No |
| _count | UserCountOrderByAggregateInput | No |
| _max | UserMaxOrderByAggregateInput | No |
| _min | UserMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserScalarWhereWithAggregatesInput | UserScalarWhereWithAggregatesInput[] | No |
| OR | UserScalarWhereWithAggregatesInput[] | No |
| NOT | UserScalarWhereWithAggregatesInput | UserScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| firstName | StringNullableWithAggregatesFilter | String | Null | Yes |
| lastName | StringNullableWithAggregatesFilter | String | Null | Yes |
| name | StringWithAggregatesFilter | String | No |
| StringWithAggregatesFilter | String | No | |
| emailVerified | BoolNullableWithAggregatesFilter | Boolean | Null | Yes |
| image | StringNullableWithAggregatesFilter | String | Null | Yes |
| status | EnumUserStatusWithAggregatesFilter | UserStatus | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SessionWhereInput | SessionWhereInput[] | No |
| OR | SessionWhereInput[] | No |
| NOT | SessionWhereInput | SessionWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| expiresAt | DateTimeFilter | DateTime | No |
| token | StringFilter | String | No |
| ipAddress | StringNullableFilter | String | Null | Yes |
| userAgent | StringNullableFilter | String | Null | Yes |
| userId | StringFilter | String | No |
| user | UserScalarRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| expiresAt | SortOrder | No |
| token | SortOrder | No |
| ipAddress | SortOrder | SortOrderInput | No |
| userAgent | SortOrder | SortOrderInput | No |
| userId | SortOrder | No |
| user | UserOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| token | String | No |
| AND | SessionWhereInput | SessionWhereInput[] | No |
| OR | SessionWhereInput[] | No |
| NOT | SessionWhereInput | SessionWhereInput[] | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| expiresAt | DateTimeFilter | DateTime | No |
| ipAddress | StringNullableFilter | String | Null | Yes |
| userAgent | StringNullableFilter | String | Null | Yes |
| userId | StringFilter | String | No |
| user | UserScalarRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| expiresAt | SortOrder | No |
| token | SortOrder | No |
| ipAddress | SortOrder | SortOrderInput | No |
| userAgent | SortOrder | SortOrderInput | No |
| userId | SortOrder | No |
| _count | SessionCountOrderByAggregateInput | No |
| _max | SessionMaxOrderByAggregateInput | No |
| _min | SessionMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SessionScalarWhereWithAggregatesInput | SessionScalarWhereWithAggregatesInput[] | No |
| OR | SessionScalarWhereWithAggregatesInput[] | No |
| NOT | SessionScalarWhereWithAggregatesInput | SessionScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| expiresAt | DateTimeWithAggregatesFilter | DateTime | No |
| token | StringWithAggregatesFilter | String | No |
| ipAddress | StringNullableWithAggregatesFilter | String | Null | Yes |
| userAgent | StringNullableWithAggregatesFilter | String | Null | Yes |
| userId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | AccountWhereInput | AccountWhereInput[] | No |
| OR | AccountWhereInput[] | No |
| NOT | AccountWhereInput | AccountWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| accountId | StringFilter | String | No |
| providerId | StringFilter | String | No |
| accessToken | StringNullableFilter | String | Null | Yes |
| refreshToken | StringNullableFilter | String | Null | Yes |
| idToken | StringNullableFilter | String | Null | Yes |
| accessTokenExpiresAt | DateTimeNullableFilter | DateTime | Null | Yes |
| refreshTokenExpiresAt | DateTimeNullableFilter | DateTime | Null | Yes |
| scope | StringNullableFilter | String | Null | Yes |
| password | StringNullableFilter | String | Null | Yes |
| userId | StringFilter | String | No |
| user | UserScalarRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| accountId | SortOrder | No |
| providerId | SortOrder | No |
| accessToken | SortOrder | SortOrderInput | No |
| refreshToken | SortOrder | SortOrderInput | No |
| idToken | SortOrder | SortOrderInput | No |
| accessTokenExpiresAt | SortOrder | SortOrderInput | No |
| refreshTokenExpiresAt | SortOrder | SortOrderInput | No |
| scope | SortOrder | SortOrderInput | No |
| password | SortOrder | SortOrderInput | No |
| userId | SortOrder | No |
| user | UserOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | AccountWhereInput | AccountWhereInput[] | No |
| OR | AccountWhereInput[] | No |
| NOT | AccountWhereInput | AccountWhereInput[] | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| accountId | StringFilter | String | No |
| providerId | StringFilter | String | No |
| accessToken | StringNullableFilter | String | Null | Yes |
| refreshToken | StringNullableFilter | String | Null | Yes |
| idToken | StringNullableFilter | String | Null | Yes |
| accessTokenExpiresAt | DateTimeNullableFilter | DateTime | Null | Yes |
| refreshTokenExpiresAt | DateTimeNullableFilter | DateTime | Null | Yes |
| scope | StringNullableFilter | String | Null | Yes |
| password | StringNullableFilter | String | Null | Yes |
| userId | StringFilter | String | No |
| user | UserScalarRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| accountId | SortOrder | No |
| providerId | SortOrder | No |
| accessToken | SortOrder | SortOrderInput | No |
| refreshToken | SortOrder | SortOrderInput | No |
| idToken | SortOrder | SortOrderInput | No |
| accessTokenExpiresAt | SortOrder | SortOrderInput | No |
| refreshTokenExpiresAt | SortOrder | SortOrderInput | No |
| scope | SortOrder | SortOrderInput | No |
| password | SortOrder | SortOrderInput | No |
| userId | SortOrder | No |
| _count | AccountCountOrderByAggregateInput | No |
| _max | AccountMaxOrderByAggregateInput | No |
| _min | AccountMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | VerificationWhereInput | VerificationWhereInput[] | No |
| OR | VerificationWhereInput[] | No |
| NOT | VerificationWhereInput | VerificationWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeNullableFilter | DateTime | Null | Yes |
| updatedAt | DateTimeNullableFilter | DateTime | Null | Yes |
| identifier | StringFilter | String | No |
| value | StringFilter | String | No |
| expiresAt | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | SortOrderInput | No |
| updatedAt | SortOrder | SortOrderInput | No |
| identifier | SortOrder | No |
| value | SortOrder | No |
| expiresAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | VerificationWhereInput | VerificationWhereInput[] | No |
| OR | VerificationWhereInput[] | No |
| NOT | VerificationWhereInput | VerificationWhereInput[] | No |
| createdAt | DateTimeNullableFilter | DateTime | Null | Yes |
| updatedAt | DateTimeNullableFilter | DateTime | Null | Yes |
| identifier | StringFilter | String | No |
| value | StringFilter | String | No |
| expiresAt | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | SortOrderInput | No |
| updatedAt | SortOrder | SortOrderInput | No |
| identifier | SortOrder | No |
| value | SortOrder | No |
| expiresAt | SortOrder | No |
| _count | VerificationCountOrderByAggregateInput | No |
| _max | VerificationMaxOrderByAggregateInput | No |
| _min | VerificationMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | VerificationScalarWhereWithAggregatesInput | VerificationScalarWhereWithAggregatesInput[] | No |
| OR | VerificationScalarWhereWithAggregatesInput[] | No |
| NOT | VerificationScalarWhereWithAggregatesInput | VerificationScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| updatedAt | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| identifier | StringWithAggregatesFilter | String | No |
| value | StringWithAggregatesFilter | String | No |
| expiresAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BusinessUnitWhereInput | BusinessUnitWhereInput[] | No |
| OR | BusinessUnitWhereInput[] | No |
| NOT | BusinessUnitWhereInput | BusinessUnitWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| name | StringFilter | String | No |
| headId | StringFilter | String | No |
| head | UserScalarRelationFilter | UserWhereInput | No |
| members | UserBusinessUnitListRelationFilter | No |
| roles | RoleListRelationFilter | No |
| requisitionTemplates | RequisitionTemplateListRelationFilter | No |
| requisitions | RequisitionListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| name | SortOrder | No |
| headId | SortOrder | No |
| head | UserOrderByWithRelationInput | No |
| members | UserBusinessUnitOrderByRelationAggregateInput | No |
| roles | RoleOrderByRelationAggregateInput | No |
| requisitionTemplates | RequisitionTemplateOrderByRelationAggregateInput | No |
| requisitions | RequisitionOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| headId | String | No |
| AND | BusinessUnitWhereInput | BusinessUnitWhereInput[] | No |
| OR | BusinessUnitWhereInput[] | No |
| NOT | BusinessUnitWhereInput | BusinessUnitWhereInput[] | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| name | StringFilter | String | No |
| head | UserScalarRelationFilter | UserWhereInput | No |
| members | UserBusinessUnitListRelationFilter | No |
| roles | RoleListRelationFilter | No |
| requisitionTemplates | RequisitionTemplateListRelationFilter | No |
| requisitions | RequisitionListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| name | SortOrder | No |
| headId | SortOrder | No |
| _count | BusinessUnitCountOrderByAggregateInput | No |
| _max | BusinessUnitMaxOrderByAggregateInput | No |
| _min | BusinessUnitMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BusinessUnitScalarWhereWithAggregatesInput | BusinessUnitScalarWhereWithAggregatesInput[] | No |
| OR | BusinessUnitScalarWhereWithAggregatesInput[] | No |
| NOT | BusinessUnitScalarWhereWithAggregatesInput | BusinessUnitScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| name | StringWithAggregatesFilter | String | No |
| headId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserBusinessUnitWhereInput | UserBusinessUnitWhereInput[] | No |
| OR | UserBusinessUnitWhereInput[] | No |
| NOT | UserBusinessUnitWhereInput | UserBusinessUnitWhereInput[] | No |
| userId | StringFilter | String | No |
| businessUnitId | StringFilter | String | No |
| membershipType | EnumBUMembershipTypeFilter | BUMembershipType | No |
| user | UserScalarRelationFilter | UserWhereInput | No |
| businessUnit | BusinessUnitScalarRelationFilter | BusinessUnitWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| businessUnitId | SortOrder | No |
| membershipType | SortOrder | No |
| user | UserOrderByWithRelationInput | No |
| businessUnit | BusinessUnitOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId_businessUnitId | UserBusinessUnitUserIdBusinessUnitIdCompoundUniqueInput | No |
| AND | UserBusinessUnitWhereInput | UserBusinessUnitWhereInput[] | No |
| OR | UserBusinessUnitWhereInput[] | No |
| NOT | UserBusinessUnitWhereInput | UserBusinessUnitWhereInput[] | No |
| userId | StringFilter | String | No |
| businessUnitId | StringFilter | String | No |
| membershipType | EnumBUMembershipTypeFilter | BUMembershipType | No |
| user | UserScalarRelationFilter | UserWhereInput | No |
| businessUnit | BusinessUnitScalarRelationFilter | BusinessUnitWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| businessUnitId | SortOrder | No |
| membershipType | SortOrder | No |
| _count | UserBusinessUnitCountOrderByAggregateInput | No |
| _max | UserBusinessUnitMaxOrderByAggregateInput | No |
| _min | UserBusinessUnitMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserBusinessUnitScalarWhereWithAggregatesInput | UserBusinessUnitScalarWhereWithAggregatesInput[] | No |
| OR | UserBusinessUnitScalarWhereWithAggregatesInput[] | No |
| NOT | UserBusinessUnitScalarWhereWithAggregatesInput | UserBusinessUnitScalarWhereWithAggregatesInput[] | No |
| userId | StringWithAggregatesFilter | String | No |
| businessUnitId | StringWithAggregatesFilter | String | No |
| membershipType | EnumBUMembershipTypeWithAggregatesFilter | BUMembershipType | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RoleWhereInput | RoleWhereInput[] | No |
| OR | RoleWhereInput[] | No |
| NOT | RoleWhereInput | RoleWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| name | StringFilter | String | No |
| scope | EnumRoleScopeFilter | RoleScope | No |
| isBUAdmin | BoolFilter | Boolean | No |
| businessUnitId | StringNullableFilter | String | Null | Yes |
| businessUnit | BusinessUnitNullableScalarRelationFilter | BusinessUnitWhereInput | Null | Yes |
| userAssignments | UserRoleAssignmentListRelationFilter | No |
| accessibleTemplates | TemplateInitiatorAccessListRelationFilter | No |
| approvalStepDefinitions | ApprovalStepDefinitionListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| name | SortOrder | No |
| scope | SortOrder | No |
| isBUAdmin | SortOrder | No |
| businessUnitId | SortOrder | SortOrderInput | No |
| businessUnit | BusinessUnitOrderByWithRelationInput | No |
| userAssignments | UserRoleAssignmentOrderByRelationAggregateInput | No |
| accessibleTemplates | TemplateInitiatorAccessOrderByRelationAggregateInput | No |
| approvalStepDefinitions | ApprovalStepDefinitionOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name_businessUnitId | RoleNameBusinessUnitIdCompoundUniqueInput | No |
| AND | RoleWhereInput | RoleWhereInput[] | No |
| OR | RoleWhereInput[] | No |
| NOT | RoleWhereInput | RoleWhereInput[] | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| name | StringFilter | String | No |
| scope | EnumRoleScopeFilter | RoleScope | No |
| isBUAdmin | BoolFilter | Boolean | No |
| businessUnitId | StringNullableFilter | String | Null | Yes |
| businessUnit | BusinessUnitNullableScalarRelationFilter | BusinessUnitWhereInput | Null | Yes |
| userAssignments | UserRoleAssignmentListRelationFilter | No |
| accessibleTemplates | TemplateInitiatorAccessListRelationFilter | No |
| approvalStepDefinitions | ApprovalStepDefinitionListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| name | SortOrder | No |
| scope | SortOrder | No |
| isBUAdmin | SortOrder | No |
| businessUnitId | SortOrder | SortOrderInput | No |
| _count | RoleCountOrderByAggregateInput | No |
| _max | RoleMaxOrderByAggregateInput | No |
| _min | RoleMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RoleScalarWhereWithAggregatesInput | RoleScalarWhereWithAggregatesInput[] | No |
| OR | RoleScalarWhereWithAggregatesInput[] | No |
| NOT | RoleScalarWhereWithAggregatesInput | RoleScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| name | StringWithAggregatesFilter | String | No |
| scope | EnumRoleScopeWithAggregatesFilter | RoleScope | No |
| isBUAdmin | BoolWithAggregatesFilter | Boolean | No |
| businessUnitId | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | UserRoleAssignmentWhereInput | UserRoleAssignmentWhereInput[] | No |
| OR | UserRoleAssignmentWhereInput[] | No |
| NOT | UserRoleAssignmentWhereInput | UserRoleAssignmentWhereInput[] | No |
| userId | StringFilter | String | No |
| roleId | StringFilter | String | No |
| assignedAt | DateTimeFilter | DateTime | No |
| user | UserScalarRelationFilter | UserWhereInput | No |
| role | RoleScalarRelationFilter | RoleWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| roleId | SortOrder | No |
| assignedAt | SortOrder | No |
| user | UserOrderByWithRelationInput | No |
| role | RoleOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId_roleId | UserRoleAssignmentUserIdRoleIdCompoundUniqueInput | No |
| AND | UserRoleAssignmentWhereInput | UserRoleAssignmentWhereInput[] | No |
| OR | UserRoleAssignmentWhereInput[] | No |
| NOT | UserRoleAssignmentWhereInput | UserRoleAssignmentWhereInput[] | No |
| userId | StringFilter | String | No |
| roleId | StringFilter | String | No |
| assignedAt | DateTimeFilter | DateTime | No |
| user | UserScalarRelationFilter | UserWhereInput | No |
| role | RoleScalarRelationFilter | RoleWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| roleId | SortOrder | No |
| assignedAt | SortOrder | No |
| _count | UserRoleAssignmentCountOrderByAggregateInput | No |
| _max | UserRoleAssignmentMaxOrderByAggregateInput | No |
| _min | UserRoleAssignmentMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserRoleAssignmentScalarWhereWithAggregatesInput | UserRoleAssignmentScalarWhereWithAggregatesInput[] | No |
| OR | UserRoleAssignmentScalarWhereWithAggregatesInput[] | No |
| NOT | UserRoleAssignmentScalarWhereWithAggregatesInput | UserRoleAssignmentScalarWhereWithAggregatesInput[] | No |
| userId | StringWithAggregatesFilter | String | No |
| roleId | StringWithAggregatesFilter | String | No |
| assignedAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RequisitionTemplateWhereInput | RequisitionTemplateWhereInput[] | No |
| OR | RequisitionTemplateWhereInput[] | No |
| NOT | RequisitionTemplateWhereInput | RequisitionTemplateWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| name | StringFilter | String | No |
| description | StringNullableFilter | String | Null | Yes |
| businessUnitId | StringFilter | String | No |
| approvalWorkflowId | StringNullableFilter | String | Null | Yes |
| businessUnit | BusinessUnitScalarRelationFilter | BusinessUnitWhereInput | No |
| fields | TemplateFieldListRelationFilter | No |
| initiatorAccess | TemplateInitiatorAccessListRelationFilter | No |
| approvalWorkflow | ApprovalWorkflowNullableScalarRelationFilter | ApprovalWorkflowWhereInput | Null | Yes |
| requisitions | RequisitionListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | SortOrderInput | No |
| businessUnitId | SortOrder | No |
| approvalWorkflowId | SortOrder | SortOrderInput | No |
| businessUnit | BusinessUnitOrderByWithRelationInput | No |
| fields | TemplateFieldOrderByRelationAggregateInput | No |
| initiatorAccess | TemplateInitiatorAccessOrderByRelationAggregateInput | No |
| approvalWorkflow | ApprovalWorkflowOrderByWithRelationInput | No |
| requisitions | RequisitionOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name_businessUnitId | RequisitionTemplateNameBusinessUnitIdCompoundUniqueInput | No |
| AND | RequisitionTemplateWhereInput | RequisitionTemplateWhereInput[] | No |
| OR | RequisitionTemplateWhereInput[] | No |
| NOT | RequisitionTemplateWhereInput | RequisitionTemplateWhereInput[] | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| name | StringFilter | String | No |
| description | StringNullableFilter | String | Null | Yes |
| businessUnitId | StringFilter | String | No |
| approvalWorkflowId | StringNullableFilter | String | Null | Yes |
| businessUnit | BusinessUnitScalarRelationFilter | BusinessUnitWhereInput | No |
| fields | TemplateFieldListRelationFilter | No |
| initiatorAccess | TemplateInitiatorAccessListRelationFilter | No |
| approvalWorkflow | ApprovalWorkflowNullableScalarRelationFilter | ApprovalWorkflowWhereInput | Null | Yes |
| requisitions | RequisitionListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | SortOrderInput | No |
| businessUnitId | SortOrder | No |
| approvalWorkflowId | SortOrder | SortOrderInput | No |
| _count | RequisitionTemplateCountOrderByAggregateInput | No |
| _max | RequisitionTemplateMaxOrderByAggregateInput | No |
| _min | RequisitionTemplateMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RequisitionTemplateScalarWhereWithAggregatesInput | RequisitionTemplateScalarWhereWithAggregatesInput[] | No |
| OR | RequisitionTemplateScalarWhereWithAggregatesInput[] | No |
| NOT | RequisitionTemplateScalarWhereWithAggregatesInput | RequisitionTemplateScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| name | StringWithAggregatesFilter | String | No |
| description | StringNullableWithAggregatesFilter | String | Null | Yes |
| businessUnitId | StringWithAggregatesFilter | String | No |
| approvalWorkflowId | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | TemplateFieldWhereInput | TemplateFieldWhereInput[] | No |
| OR | TemplateFieldWhereInput[] | No |
| NOT | TemplateFieldWhereInput | TemplateFieldWhereInput[] | No |
| id | StringFilter | String | No |
| templateId | StringFilter | String | No |
| label | StringFilter | String | No |
| fieldType | EnumFieldTypeFilter | FieldType | No |
| isRequired | BoolFilter | Boolean | No |
| placeholder | StringNullableFilter | String | Null | Yes |
| order | IntFilter | Int | No |
| parentListFieldId | StringNullableFilter | String | Null | Yes |
| template | RequisitionTemplateScalarRelationFilter | RequisitionTemplateWhereInput | No |
| options | FieldOptionListRelationFilter | No |
| listColumns | TemplateFieldListRelationFilter | No |
| parentListField | TemplateFieldNullableScalarRelationFilter | TemplateFieldWhereInput | Null | Yes |
| submittedValues | RequisitionValueListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| templateId | SortOrder | No |
| label | SortOrder | No |
| fieldType | SortOrder | No |
| isRequired | SortOrder | No |
| placeholder | SortOrder | SortOrderInput | No |
| order | SortOrder | No |
| parentListFieldId | SortOrder | SortOrderInput | No |
| template | RequisitionTemplateOrderByWithRelationInput | No |
| options | FieldOptionOrderByRelationAggregateInput | No |
| listColumns | TemplateFieldOrderByRelationAggregateInput | No |
| parentListField | TemplateFieldOrderByWithRelationInput | No |
| submittedValues | RequisitionValueOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| templateId_label_parentListFieldId | TemplateFieldTemplateIdLabelParentListFieldIdCompoundUniqueInput | No |
| AND | TemplateFieldWhereInput | TemplateFieldWhereInput[] | No |
| OR | TemplateFieldWhereInput[] | No |
| NOT | TemplateFieldWhereInput | TemplateFieldWhereInput[] | No |
| templateId | StringFilter | String | No |
| label | StringFilter | String | No |
| fieldType | EnumFieldTypeFilter | FieldType | No |
| isRequired | BoolFilter | Boolean | No |
| placeholder | StringNullableFilter | String | Null | Yes |
| order | IntFilter | Int | No |
| parentListFieldId | StringNullableFilter | String | Null | Yes |
| template | RequisitionTemplateScalarRelationFilter | RequisitionTemplateWhereInput | No |
| options | FieldOptionListRelationFilter | No |
| listColumns | TemplateFieldListRelationFilter | No |
| parentListField | TemplateFieldNullableScalarRelationFilter | TemplateFieldWhereInput | Null | Yes |
| submittedValues | RequisitionValueListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| templateId | SortOrder | No |
| label | SortOrder | No |
| fieldType | SortOrder | No |
| isRequired | SortOrder | No |
| placeholder | SortOrder | SortOrderInput | No |
| order | SortOrder | No |
| parentListFieldId | SortOrder | SortOrderInput | No |
| _count | TemplateFieldCountOrderByAggregateInput | No |
| _avg | TemplateFieldAvgOrderByAggregateInput | No |
| _max | TemplateFieldMaxOrderByAggregateInput | No |
| _min | TemplateFieldMinOrderByAggregateInput | No |
| _sum | TemplateFieldSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TemplateFieldScalarWhereWithAggregatesInput | TemplateFieldScalarWhereWithAggregatesInput[] | No |
| OR | TemplateFieldScalarWhereWithAggregatesInput[] | No |
| NOT | TemplateFieldScalarWhereWithAggregatesInput | TemplateFieldScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| templateId | StringWithAggregatesFilter | String | No |
| label | StringWithAggregatesFilter | String | No |
| fieldType | EnumFieldTypeWithAggregatesFilter | FieldType | No |
| isRequired | BoolWithAggregatesFilter | Boolean | No |
| placeholder | StringNullableWithAggregatesFilter | String | Null | Yes |
| order | IntWithAggregatesFilter | Int | No |
| parentListFieldId | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | FieldOptionWhereInput | FieldOptionWhereInput[] | No |
| OR | FieldOptionWhereInput[] | No |
| NOT | FieldOptionWhereInput | FieldOptionWhereInput[] | No |
| id | StringFilter | String | No |
| fieldId | StringFilter | String | No |
| label | StringFilter | String | No |
| value | StringFilter | String | No |
| order | IntFilter | Int | No |
| field | TemplateFieldScalarRelationFilter | TemplateFieldWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| fieldId | SortOrder | No |
| label | SortOrder | No |
| value | SortOrder | No |
| order | SortOrder | No |
| field | TemplateFieldOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| fieldId_value | FieldOptionFieldIdValueCompoundUniqueInput | No |
| AND | FieldOptionWhereInput | FieldOptionWhereInput[] | No |
| OR | FieldOptionWhereInput[] | No |
| NOT | FieldOptionWhereInput | FieldOptionWhereInput[] | No |
| fieldId | StringFilter | String | No |
| label | StringFilter | String | No |
| value | StringFilter | String | No |
| order | IntFilter | Int | No |
| field | TemplateFieldScalarRelationFilter | TemplateFieldWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| fieldId | SortOrder | No |
| label | SortOrder | No |
| value | SortOrder | No |
| order | SortOrder | No |
| _count | FieldOptionCountOrderByAggregateInput | No |
| _avg | FieldOptionAvgOrderByAggregateInput | No |
| _max | FieldOptionMaxOrderByAggregateInput | No |
| _min | FieldOptionMinOrderByAggregateInput | No |
| _sum | FieldOptionSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FieldOptionScalarWhereWithAggregatesInput | FieldOptionScalarWhereWithAggregatesInput[] | No |
| OR | FieldOptionScalarWhereWithAggregatesInput[] | No |
| NOT | FieldOptionScalarWhereWithAggregatesInput | FieldOptionScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| fieldId | StringWithAggregatesFilter | String | No |
| label | StringWithAggregatesFilter | String | No |
| value | StringWithAggregatesFilter | String | No |
| order | IntWithAggregatesFilter | Int | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TemplateInitiatorAccessWhereInput | TemplateInitiatorAccessWhereInput[] | No |
| OR | TemplateInitiatorAccessWhereInput[] | No |
| NOT | TemplateInitiatorAccessWhereInput | TemplateInitiatorAccessWhereInput[] | No |
| templateId | StringFilter | String | No |
| roleId | StringFilter | String | No |
| template | RequisitionTemplateScalarRelationFilter | RequisitionTemplateWhereInput | No |
| role | RoleScalarRelationFilter | RoleWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| templateId | SortOrder | No |
| roleId | SortOrder | No |
| template | RequisitionTemplateOrderByWithRelationInput | No |
| role | RoleOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| templateId_roleId | TemplateInitiatorAccessTemplateIdRoleIdCompoundUniqueInput | No |
| AND | TemplateInitiatorAccessWhereInput | TemplateInitiatorAccessWhereInput[] | No |
| OR | TemplateInitiatorAccessWhereInput[] | No |
| NOT | TemplateInitiatorAccessWhereInput | TemplateInitiatorAccessWhereInput[] | No |
| templateId | StringFilter | String | No |
| roleId | StringFilter | String | No |
| template | RequisitionTemplateScalarRelationFilter | RequisitionTemplateWhereInput | No |
| role | RoleScalarRelationFilter | RoleWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| templateId | SortOrder | No |
| roleId | SortOrder | No |
| _count | TemplateInitiatorAccessCountOrderByAggregateInput | No |
| _max | TemplateInitiatorAccessMaxOrderByAggregateInput | No |
| _min | TemplateInitiatorAccessMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TemplateInitiatorAccessScalarWhereWithAggregatesInput | TemplateInitiatorAccessScalarWhereWithAggregatesInput[] | No |
| OR | TemplateInitiatorAccessScalarWhereWithAggregatesInput[] | No |
| NOT | TemplateInitiatorAccessScalarWhereWithAggregatesInput | TemplateInitiatorAccessScalarWhereWithAggregatesInput[] | No |
| templateId | StringWithAggregatesFilter | String | No |
| roleId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ApprovalWorkflowWhereInput | ApprovalWorkflowWhereInput[] | No |
| OR | ApprovalWorkflowWhereInput[] | No |
| NOT | ApprovalWorkflowWhereInput | ApprovalWorkflowWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| name | StringFilter | String | No |
| steps | ApprovalStepDefinitionListRelationFilter | No |
| templates | RequisitionTemplateListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| name | SortOrder | No |
| steps | ApprovalStepDefinitionOrderByRelationAggregateInput | No |
| templates | RequisitionTemplateOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | ApprovalWorkflowWhereInput | ApprovalWorkflowWhereInput[] | No |
| OR | ApprovalWorkflowWhereInput[] | No |
| NOT | ApprovalWorkflowWhereInput | ApprovalWorkflowWhereInput[] | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| name | StringFilter | String | No |
| steps | ApprovalStepDefinitionListRelationFilter | No |
| templates | RequisitionTemplateListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| name | SortOrder | No |
| _count | ApprovalWorkflowCountOrderByAggregateInput | No |
| _max | ApprovalWorkflowMaxOrderByAggregateInput | No |
| _min | ApprovalWorkflowMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ApprovalWorkflowScalarWhereWithAggregatesInput | ApprovalWorkflowScalarWhereWithAggregatesInput[] | No |
| OR | ApprovalWorkflowScalarWhereWithAggregatesInput[] | No |
| NOT | ApprovalWorkflowScalarWhereWithAggregatesInput | ApprovalWorkflowScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| name | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ApprovalStepDefinitionWhereInput | ApprovalStepDefinitionWhereInput[] | No |
| OR | ApprovalStepDefinitionWhereInput[] | No |
| NOT | ApprovalStepDefinitionWhereInput | ApprovalStepDefinitionWhereInput[] | No |
| id | StringFilter | String | No |
| workflowId | StringFilter | String | No |
| stepNumber | IntFilter | Int | No |
| approverRoleId | StringFilter | String | No |
| workflow | ApprovalWorkflowScalarRelationFilter | ApprovalWorkflowWhereInput | No |
| approverRole | RoleScalarRelationFilter | RoleWhereInput | No |
| requisitionApprovals | RequisitionApprovalListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| workflowId | SortOrder | No |
| stepNumber | SortOrder | No |
| approverRoleId | SortOrder | No |
| workflow | ApprovalWorkflowOrderByWithRelationInput | No |
| approverRole | RoleOrderByWithRelationInput | No |
| requisitionApprovals | RequisitionApprovalOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| workflowId_stepNumber | ApprovalStepDefinitionWorkflowIdStepNumberCompoundUniqueInput | No |
| AND | ApprovalStepDefinitionWhereInput | ApprovalStepDefinitionWhereInput[] | No |
| OR | ApprovalStepDefinitionWhereInput[] | No |
| NOT | ApprovalStepDefinitionWhereInput | ApprovalStepDefinitionWhereInput[] | No |
| workflowId | StringFilter | String | No |
| stepNumber | IntFilter | Int | No |
| approverRoleId | StringFilter | String | No |
| workflow | ApprovalWorkflowScalarRelationFilter | ApprovalWorkflowWhereInput | No |
| approverRole | RoleScalarRelationFilter | RoleWhereInput | No |
| requisitionApprovals | RequisitionApprovalListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| workflowId | SortOrder | No |
| stepNumber | SortOrder | No |
| approverRoleId | SortOrder | No |
| _count | ApprovalStepDefinitionCountOrderByAggregateInput | No |
| _avg | ApprovalStepDefinitionAvgOrderByAggregateInput | No |
| _max | ApprovalStepDefinitionMaxOrderByAggregateInput | No |
| _min | ApprovalStepDefinitionMinOrderByAggregateInput | No |
| _sum | ApprovalStepDefinitionSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ApprovalStepDefinitionScalarWhereWithAggregatesInput | ApprovalStepDefinitionScalarWhereWithAggregatesInput[] | No |
| OR | ApprovalStepDefinitionScalarWhereWithAggregatesInput[] | No |
| NOT | ApprovalStepDefinitionScalarWhereWithAggregatesInput | ApprovalStepDefinitionScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| workflowId | StringWithAggregatesFilter | String | No |
| stepNumber | IntWithAggregatesFilter | Int | No |
| approverRoleId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RequisitionWhereInput | RequisitionWhereInput[] | No |
| OR | RequisitionWhereInput[] | No |
| NOT | RequisitionWhereInput | RequisitionWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| initiatorId | StringFilter | String | No |
| businessUnitId | StringFilter | String | No |
| templateId | StringFilter | String | No |
| overallStatus | EnumRequisitionStatusFilter | RequisitionStatus | No |
| initiator | UserScalarRelationFilter | UserWhereInput | No |
| fromBU | BusinessUnitScalarRelationFilter | BusinessUnitWhereInput | No |
| template | RequisitionTemplateScalarRelationFilter | RequisitionTemplateWhereInput | No |
| approvalHistory | RequisitionApprovalListRelationFilter | No |
| submittedValues | RequisitionValueListRelationFilter | No |
| attachments | AttachmentListRelationFilter | No |
| actionLog | CommentListRelationFilter | No |
| notifications | NotificationListRelationFilter | No |
| tags | RequisitionTagListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| initiatorId | SortOrder | No |
| businessUnitId | SortOrder | No |
| templateId | SortOrder | No |
| overallStatus | SortOrder | No |
| initiator | UserOrderByWithRelationInput | No |
| fromBU | BusinessUnitOrderByWithRelationInput | No |
| template | RequisitionTemplateOrderByWithRelationInput | No |
| approvalHistory | RequisitionApprovalOrderByRelationAggregateInput | No |
| submittedValues | RequisitionValueOrderByRelationAggregateInput | No |
| attachments | AttachmentOrderByRelationAggregateInput | No |
| actionLog | CommentOrderByRelationAggregateInput | No |
| notifications | NotificationOrderByRelationAggregateInput | No |
| tags | RequisitionTagOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | RequisitionWhereInput | RequisitionWhereInput[] | No |
| OR | RequisitionWhereInput[] | No |
| NOT | RequisitionWhereInput | RequisitionWhereInput[] | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| initiatorId | StringFilter | String | No |
| businessUnitId | StringFilter | String | No |
| templateId | StringFilter | String | No |
| overallStatus | EnumRequisitionStatusFilter | RequisitionStatus | No |
| initiator | UserScalarRelationFilter | UserWhereInput | No |
| fromBU | BusinessUnitScalarRelationFilter | BusinessUnitWhereInput | No |
| template | RequisitionTemplateScalarRelationFilter | RequisitionTemplateWhereInput | No |
| approvalHistory | RequisitionApprovalListRelationFilter | No |
| submittedValues | RequisitionValueListRelationFilter | No |
| attachments | AttachmentListRelationFilter | No |
| actionLog | CommentListRelationFilter | No |
| notifications | NotificationListRelationFilter | No |
| tags | RequisitionTagListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| initiatorId | SortOrder | No |
| businessUnitId | SortOrder | No |
| templateId | SortOrder | No |
| overallStatus | SortOrder | No |
| _count | RequisitionCountOrderByAggregateInput | No |
| _max | RequisitionMaxOrderByAggregateInput | No |
| _min | RequisitionMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RequisitionScalarWhereWithAggregatesInput | RequisitionScalarWhereWithAggregatesInput[] | No |
| OR | RequisitionScalarWhereWithAggregatesInput[] | No |
| NOT | RequisitionScalarWhereWithAggregatesInput | RequisitionScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| initiatorId | StringWithAggregatesFilter | String | No |
| businessUnitId | StringWithAggregatesFilter | String | No |
| templateId | StringWithAggregatesFilter | String | No |
| overallStatus | EnumRequisitionStatusWithAggregatesFilter | RequisitionStatus | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RequisitionApprovalWhereInput | RequisitionApprovalWhereInput[] | No |
| OR | RequisitionApprovalWhereInput[] | No |
| NOT | RequisitionApprovalWhereInput | RequisitionApprovalWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| requisitionId | StringFilter | String | No |
| stepDefinitionId | StringFilter | String | No |
| approverId | StringNullableFilter | String | Null | Yes |
| status | EnumApprovalStatusFilter | ApprovalStatus | No |
| actionedAt | DateTimeNullableFilter | DateTime | Null | Yes |
| requisition | RequisitionScalarRelationFilter | RequisitionWhereInput | No |
| stepDefinition | ApprovalStepDefinitionScalarRelationFilter | ApprovalStepDefinitionWhereInput | No |
| approver | UserNullableScalarRelationFilter | UserWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| requisitionId | SortOrder | No |
| stepDefinitionId | SortOrder | No |
| approverId | SortOrder | SortOrderInput | No |
| status | SortOrder | No |
| actionedAt | SortOrder | SortOrderInput | No |
| requisition | RequisitionOrderByWithRelationInput | No |
| stepDefinition | ApprovalStepDefinitionOrderByWithRelationInput | No |
| approver | UserOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | RequisitionApprovalWhereInput | RequisitionApprovalWhereInput[] | No |
| OR | RequisitionApprovalWhereInput[] | No |
| NOT | RequisitionApprovalWhereInput | RequisitionApprovalWhereInput[] | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| requisitionId | StringFilter | String | No |
| stepDefinitionId | StringFilter | String | No |
| approverId | StringNullableFilter | String | Null | Yes |
| status | EnumApprovalStatusFilter | ApprovalStatus | No |
| actionedAt | DateTimeNullableFilter | DateTime | Null | Yes |
| requisition | RequisitionScalarRelationFilter | RequisitionWhereInput | No |
| stepDefinition | ApprovalStepDefinitionScalarRelationFilter | ApprovalStepDefinitionWhereInput | No |
| approver | UserNullableScalarRelationFilter | UserWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| requisitionId | SortOrder | No |
| stepDefinitionId | SortOrder | No |
| approverId | SortOrder | SortOrderInput | No |
| status | SortOrder | No |
| actionedAt | SortOrder | SortOrderInput | No |
| _count | RequisitionApprovalCountOrderByAggregateInput | No |
| _max | RequisitionApprovalMaxOrderByAggregateInput | No |
| _min | RequisitionApprovalMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RequisitionApprovalScalarWhereWithAggregatesInput | RequisitionApprovalScalarWhereWithAggregatesInput[] | No |
| OR | RequisitionApprovalScalarWhereWithAggregatesInput[] | No |
| NOT | RequisitionApprovalScalarWhereWithAggregatesInput | RequisitionApprovalScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| requisitionId | StringWithAggregatesFilter | String | No |
| stepDefinitionId | StringWithAggregatesFilter | String | No |
| approverId | StringNullableWithAggregatesFilter | String | Null | Yes |
| status | EnumApprovalStatusWithAggregatesFilter | ApprovalStatus | No |
| actionedAt | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | RequisitionValueWhereInput | RequisitionValueWhereInput[] | No |
| OR | RequisitionValueWhereInput[] | No |
| NOT | RequisitionValueWhereInput | RequisitionValueWhereInput[] | No |
| id | StringFilter | String | No |
| requisitionId | StringFilter | String | No |
| templateFieldId | StringFilter | String | No |
| value | StringFilter | String | No |
| rowIndex | IntNullableFilter | Int | Null | Yes |
| requisition | RequisitionScalarRelationFilter | RequisitionWhereInput | No |
| templateField | TemplateFieldScalarRelationFilter | TemplateFieldWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| requisitionId | SortOrder | No |
| templateFieldId | SortOrder | No |
| value | SortOrder | No |
| rowIndex | SortOrder | SortOrderInput | No |
| requisition | RequisitionOrderByWithRelationInput | No |
| templateField | TemplateFieldOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| requisitionId_templateFieldId_rowIndex | RequisitionValueRequisitionIdTemplateFieldIdRowIndexCompoundUniqueInput | No |
| AND | RequisitionValueWhereInput | RequisitionValueWhereInput[] | No |
| OR | RequisitionValueWhereInput[] | No |
| NOT | RequisitionValueWhereInput | RequisitionValueWhereInput[] | No |
| requisitionId | StringFilter | String | No |
| templateFieldId | StringFilter | String | No |
| value | StringFilter | String | No |
| rowIndex | IntNullableFilter | Int | Null | Yes |
| requisition | RequisitionScalarRelationFilter | RequisitionWhereInput | No |
| templateField | TemplateFieldScalarRelationFilter | TemplateFieldWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| requisitionId | SortOrder | No |
| templateFieldId | SortOrder | No |
| value | SortOrder | No |
| rowIndex | SortOrder | SortOrderInput | No |
| _count | RequisitionValueCountOrderByAggregateInput | No |
| _avg | RequisitionValueAvgOrderByAggregateInput | No |
| _max | RequisitionValueMaxOrderByAggregateInput | No |
| _min | RequisitionValueMinOrderByAggregateInput | No |
| _sum | RequisitionValueSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RequisitionValueScalarWhereWithAggregatesInput | RequisitionValueScalarWhereWithAggregatesInput[] | No |
| OR | RequisitionValueScalarWhereWithAggregatesInput[] | No |
| NOT | RequisitionValueScalarWhereWithAggregatesInput | RequisitionValueScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| requisitionId | StringWithAggregatesFilter | String | No |
| templateFieldId | StringWithAggregatesFilter | String | No |
| value | StringWithAggregatesFilter | String | No |
| rowIndex | IntNullableWithAggregatesFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | AttachmentWhereInput | AttachmentWhereInput[] | No |
| OR | AttachmentWhereInput[] | No |
| NOT | AttachmentWhereInput | AttachmentWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| url | StringFilter | String | No |
| filename | StringFilter | String | No |
| filetype | StringFilter | String | No |
| size | IntNullableFilter | Int | Null | Yes |
| uploaderId | StringFilter | String | No |
| requisitionId | StringNullableFilter | String | Null | Yes |
| commentId | StringNullableFilter | String | Null | Yes |
| chatMessageId | StringNullableFilter | String | Null | Yes |
| uploader | UserScalarRelationFilter | UserWhereInput | No |
| requisition | RequisitionNullableScalarRelationFilter | RequisitionWhereInput | Null | Yes |
| comment | CommentNullableScalarRelationFilter | CommentWhereInput | Null | Yes |
| chatMessage | ChatMessageNullableScalarRelationFilter | ChatMessageWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| url | SortOrder | No |
| filename | SortOrder | No |
| filetype | SortOrder | No |
| size | SortOrder | SortOrderInput | No |
| uploaderId | SortOrder | No |
| requisitionId | SortOrder | SortOrderInput | No |
| commentId | SortOrder | SortOrderInput | No |
| chatMessageId | SortOrder | SortOrderInput | No |
| uploader | UserOrderByWithRelationInput | No |
| requisition | RequisitionOrderByWithRelationInput | No |
| comment | CommentOrderByWithRelationInput | No |
| chatMessage | ChatMessageOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | AttachmentWhereInput | AttachmentWhereInput[] | No |
| OR | AttachmentWhereInput[] | No |
| NOT | AttachmentWhereInput | AttachmentWhereInput[] | No |
| createdAt | DateTimeFilter | DateTime | No |
| url | StringFilter | String | No |
| filename | StringFilter | String | No |
| filetype | StringFilter | String | No |
| size | IntNullableFilter | Int | Null | Yes |
| uploaderId | StringFilter | String | No |
| requisitionId | StringNullableFilter | String | Null | Yes |
| commentId | StringNullableFilter | String | Null | Yes |
| chatMessageId | StringNullableFilter | String | Null | Yes |
| uploader | UserScalarRelationFilter | UserWhereInput | No |
| requisition | RequisitionNullableScalarRelationFilter | RequisitionWhereInput | Null | Yes |
| comment | CommentNullableScalarRelationFilter | CommentWhereInput | Null | Yes |
| chatMessage | ChatMessageNullableScalarRelationFilter | ChatMessageWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| url | SortOrder | No |
| filename | SortOrder | No |
| filetype | SortOrder | No |
| size | SortOrder | SortOrderInput | No |
| uploaderId | SortOrder | No |
| requisitionId | SortOrder | SortOrderInput | No |
| commentId | SortOrder | SortOrderInput | No |
| chatMessageId | SortOrder | SortOrderInput | No |
| _count | AttachmentCountOrderByAggregateInput | No |
| _avg | AttachmentAvgOrderByAggregateInput | No |
| _max | AttachmentMaxOrderByAggregateInput | No |
| _min | AttachmentMinOrderByAggregateInput | No |
| _sum | AttachmentSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | AttachmentScalarWhereWithAggregatesInput | AttachmentScalarWhereWithAggregatesInput[] | No |
| OR | AttachmentScalarWhereWithAggregatesInput[] | No |
| NOT | AttachmentScalarWhereWithAggregatesInput | AttachmentScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| url | StringWithAggregatesFilter | String | No |
| filename | StringWithAggregatesFilter | String | No |
| filetype | StringWithAggregatesFilter | String | No |
| size | IntNullableWithAggregatesFilter | Int | Null | Yes |
| uploaderId | StringWithAggregatesFilter | String | No |
| requisitionId | StringNullableWithAggregatesFilter | String | Null | Yes |
| commentId | StringNullableWithAggregatesFilter | String | Null | Yes |
| chatMessageId | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | CommentWhereInput | CommentWhereInput[] | No |
| OR | CommentWhereInput[] | No |
| NOT | CommentWhereInput | CommentWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| content | StringFilter | String | No |
| action | EnumActionTypeFilter | ActionType | No |
| authorId | StringFilter | String | No |
| requisitionId | StringFilter | String | No |
| author | UserScalarRelationFilter | UserWhereInput | No |
| requisition | RequisitionScalarRelationFilter | RequisitionWhereInput | No |
| attachments | AttachmentListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| content | SortOrder | No |
| action | SortOrder | No |
| authorId | SortOrder | No |
| requisitionId | SortOrder | No |
| author | UserOrderByWithRelationInput | No |
| requisition | RequisitionOrderByWithRelationInput | No |
| attachments | AttachmentOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | CommentWhereInput | CommentWhereInput[] | No |
| OR | CommentWhereInput[] | No |
| NOT | CommentWhereInput | CommentWhereInput[] | No |
| createdAt | DateTimeFilter | DateTime | No |
| content | StringFilter | String | No |
| action | EnumActionTypeFilter | ActionType | No |
| authorId | StringFilter | String | No |
| requisitionId | StringFilter | String | No |
| author | UserScalarRelationFilter | UserWhereInput | No |
| requisition | RequisitionScalarRelationFilter | RequisitionWhereInput | No |
| attachments | AttachmentListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| content | SortOrder | No |
| action | SortOrder | No |
| authorId | SortOrder | No |
| requisitionId | SortOrder | No |
| _count | CommentCountOrderByAggregateInput | No |
| _max | CommentMaxOrderByAggregateInput | No |
| _min | CommentMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CommentScalarWhereWithAggregatesInput | CommentScalarWhereWithAggregatesInput[] | No |
| OR | CommentScalarWhereWithAggregatesInput[] | No |
| NOT | CommentScalarWhereWithAggregatesInput | CommentScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| content | StringWithAggregatesFilter | String | No |
| action | EnumActionTypeWithAggregatesFilter | ActionType | No |
| authorId | StringWithAggregatesFilter | String | No |
| requisitionId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | NotificationWhereInput | NotificationWhereInput[] | No |
| OR | NotificationWhereInput[] | No |
| NOT | NotificationWhereInput | NotificationWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| message | StringFilter | String | No |
| isRead | BoolFilter | Boolean | No |
| recipientId | StringFilter | String | No |
| requisitionId | StringNullableFilter | String | Null | Yes |
| recipient | UserScalarRelationFilter | UserWhereInput | No |
| requisition | RequisitionNullableScalarRelationFilter | RequisitionWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| message | SortOrder | No |
| isRead | SortOrder | No |
| recipientId | SortOrder | No |
| requisitionId | SortOrder | SortOrderInput | No |
| recipient | UserOrderByWithRelationInput | No |
| requisition | RequisitionOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | NotificationWhereInput | NotificationWhereInput[] | No |
| OR | NotificationWhereInput[] | No |
| NOT | NotificationWhereInput | NotificationWhereInput[] | No |
| createdAt | DateTimeFilter | DateTime | No |
| message | StringFilter | String | No |
| isRead | BoolFilter | Boolean | No |
| recipientId | StringFilter | String | No |
| requisitionId | StringNullableFilter | String | Null | Yes |
| recipient | UserScalarRelationFilter | UserWhereInput | No |
| requisition | RequisitionNullableScalarRelationFilter | RequisitionWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| message | SortOrder | No |
| isRead | SortOrder | No |
| recipientId | SortOrder | No |
| requisitionId | SortOrder | SortOrderInput | No |
| _count | NotificationCountOrderByAggregateInput | No |
| _max | NotificationMaxOrderByAggregateInput | No |
| _min | NotificationMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | NotificationScalarWhereWithAggregatesInput | NotificationScalarWhereWithAggregatesInput[] | No |
| OR | NotificationScalarWhereWithAggregatesInput[] | No |
| NOT | NotificationScalarWhereWithAggregatesInput | NotificationScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| message | StringWithAggregatesFilter | String | No |
| isRead | BoolWithAggregatesFilter | Boolean | No |
| recipientId | StringWithAggregatesFilter | String | No |
| requisitionId | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | TagWhereInput | TagWhereInput[] | No |
| OR | TagWhereInput[] | No |
| NOT | TagWhereInput | TagWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| label | StringFilter | String | No |
| color | StringFilter | String | No |
| creatorId | StringFilter | String | No |
| creator | UserScalarRelationFilter | UserWhereInput | No |
| requisitions | RequisitionTagListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| label | SortOrder | No |
| color | SortOrder | No |
| creatorId | SortOrder | No |
| creator | UserOrderByWithRelationInput | No |
| requisitions | RequisitionTagOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| label | String | No |
| AND | TagWhereInput | TagWhereInput[] | No |
| OR | TagWhereInput[] | No |
| NOT | TagWhereInput | TagWhereInput[] | No |
| createdAt | DateTimeFilter | DateTime | No |
| color | StringFilter | String | No |
| creatorId | StringFilter | String | No |
| creator | UserScalarRelationFilter | UserWhereInput | No |
| requisitions | RequisitionTagListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| label | SortOrder | No |
| color | SortOrder | No |
| creatorId | SortOrder | No |
| _count | TagCountOrderByAggregateInput | No |
| _max | TagMaxOrderByAggregateInput | No |
| _min | TagMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TagScalarWhereWithAggregatesInput | TagScalarWhereWithAggregatesInput[] | No |
| OR | TagScalarWhereWithAggregatesInput[] | No |
| NOT | TagScalarWhereWithAggregatesInput | TagScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| label | StringWithAggregatesFilter | String | No |
| color | StringWithAggregatesFilter | String | No |
| creatorId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RequisitionTagWhereInput | RequisitionTagWhereInput[] | No |
| OR | RequisitionTagWhereInput[] | No |
| NOT | RequisitionTagWhereInput | RequisitionTagWhereInput[] | No |
| requisitionId | StringFilter | String | No |
| tagId | StringFilter | String | No |
| assignedById | StringFilter | String | No |
| assignedAt | DateTimeFilter | DateTime | No |
| requisition | RequisitionScalarRelationFilter | RequisitionWhereInput | No |
| tag | TagScalarRelationFilter | TagWhereInput | No |
| assignedBy | UserScalarRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| requisitionId | SortOrder | No |
| tagId | SortOrder | No |
| assignedById | SortOrder | No |
| assignedAt | SortOrder | No |
| requisition | RequisitionOrderByWithRelationInput | No |
| tag | TagOrderByWithRelationInput | No |
| assignedBy | UserOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| requisitionId_tagId | RequisitionTagRequisitionIdTagIdCompoundUniqueInput | No |
| AND | RequisitionTagWhereInput | RequisitionTagWhereInput[] | No |
| OR | RequisitionTagWhereInput[] | No |
| NOT | RequisitionTagWhereInput | RequisitionTagWhereInput[] | No |
| requisitionId | StringFilter | String | No |
| tagId | StringFilter | String | No |
| assignedById | StringFilter | String | No |
| assignedAt | DateTimeFilter | DateTime | No |
| requisition | RequisitionScalarRelationFilter | RequisitionWhereInput | No |
| tag | TagScalarRelationFilter | TagWhereInput | No |
| assignedBy | UserScalarRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| requisitionId | SortOrder | No |
| tagId | SortOrder | No |
| assignedById | SortOrder | No |
| assignedAt | SortOrder | No |
| _count | RequisitionTagCountOrderByAggregateInput | No |
| _max | RequisitionTagMaxOrderByAggregateInput | No |
| _min | RequisitionTagMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RequisitionTagScalarWhereWithAggregatesInput | RequisitionTagScalarWhereWithAggregatesInput[] | No |
| OR | RequisitionTagScalarWhereWithAggregatesInput[] | No |
| NOT | RequisitionTagScalarWhereWithAggregatesInput | RequisitionTagScalarWhereWithAggregatesInput[] | No |
| requisitionId | StringWithAggregatesFilter | String | No |
| tagId | StringWithAggregatesFilter | String | No |
| assignedById | StringWithAggregatesFilter | String | No |
| assignedAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ChatWhereInput | ChatWhereInput[] | No |
| OR | ChatWhereInput[] | No |
| NOT | ChatWhereInput | ChatWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| chatType | EnumChatTypeFilter | ChatType | No |
| groupName | StringNullableFilter | String | Null | Yes |
| groupImageUrl | StringNullableFilter | String | Null | Yes |
| creatorId | StringNullableFilter | String | Null | Yes |
| creator | UserNullableScalarRelationFilter | UserWhereInput | Null | Yes |
| participants | ChatParticipantListRelationFilter | No |
| messages | ChatMessageListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| chatType | SortOrder | No |
| groupName | SortOrder | SortOrderInput | No |
| groupImageUrl | SortOrder | SortOrderInput | No |
| creatorId | SortOrder | SortOrderInput | No |
| creator | UserOrderByWithRelationInput | No |
| participants | ChatParticipantOrderByRelationAggregateInput | No |
| messages | ChatMessageOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | ChatWhereInput | ChatWhereInput[] | No |
| OR | ChatWhereInput[] | No |
| NOT | ChatWhereInput | ChatWhereInput[] | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| chatType | EnumChatTypeFilter | ChatType | No |
| groupName | StringNullableFilter | String | Null | Yes |
| groupImageUrl | StringNullableFilter | String | Null | Yes |
| creatorId | StringNullableFilter | String | Null | Yes |
| creator | UserNullableScalarRelationFilter | UserWhereInput | Null | Yes |
| participants | ChatParticipantListRelationFilter | No |
| messages | ChatMessageListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| chatType | SortOrder | No |
| groupName | SortOrder | SortOrderInput | No |
| groupImageUrl | SortOrder | SortOrderInput | No |
| creatorId | SortOrder | SortOrderInput | No |
| _count | ChatCountOrderByAggregateInput | No |
| _max | ChatMaxOrderByAggregateInput | No |
| _min | ChatMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ChatScalarWhereWithAggregatesInput | ChatScalarWhereWithAggregatesInput[] | No |
| OR | ChatScalarWhereWithAggregatesInput[] | No |
| NOT | ChatScalarWhereWithAggregatesInput | ChatScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| chatType | EnumChatTypeWithAggregatesFilter | ChatType | No |
| groupName | StringNullableWithAggregatesFilter | String | Null | Yes |
| groupImageUrl | StringNullableWithAggregatesFilter | String | Null | Yes |
| creatorId | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | ChatParticipantWhereInput | ChatParticipantWhereInput[] | No |
| OR | ChatParticipantWhereInput[] | No |
| NOT | ChatParticipantWhereInput | ChatParticipantWhereInput[] | No |
| chatId | StringFilter | String | No |
| userId | StringFilter | String | No |
| lastReadAt | DateTimeNullableFilter | DateTime | Null | Yes |
| chat | ChatScalarRelationFilter | ChatWhereInput | No |
| user | UserScalarRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| chatId | SortOrder | No |
| userId | SortOrder | No |
| lastReadAt | SortOrder | SortOrderInput | No |
| chat | ChatOrderByWithRelationInput | No |
| user | UserOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| chatId_userId | ChatParticipantChatIdUserIdCompoundUniqueInput | No |
| AND | ChatParticipantWhereInput | ChatParticipantWhereInput[] | No |
| OR | ChatParticipantWhereInput[] | No |
| NOT | ChatParticipantWhereInput | ChatParticipantWhereInput[] | No |
| chatId | StringFilter | String | No |
| userId | StringFilter | String | No |
| lastReadAt | DateTimeNullableFilter | DateTime | Null | Yes |
| chat | ChatScalarRelationFilter | ChatWhereInput | No |
| user | UserScalarRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| chatId | SortOrder | No |
| userId | SortOrder | No |
| lastReadAt | SortOrder | SortOrderInput | No |
| _count | ChatParticipantCountOrderByAggregateInput | No |
| _max | ChatParticipantMaxOrderByAggregateInput | No |
| _min | ChatParticipantMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ChatParticipantScalarWhereWithAggregatesInput | ChatParticipantScalarWhereWithAggregatesInput[] | No |
| OR | ChatParticipantScalarWhereWithAggregatesInput[] | No |
| NOT | ChatParticipantScalarWhereWithAggregatesInput | ChatParticipantScalarWhereWithAggregatesInput[] | No |
| chatId | StringWithAggregatesFilter | String | No |
| userId | StringWithAggregatesFilter | String | No |
| lastReadAt | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | ChatMessageWhereInput | ChatMessageWhereInput[] | No |
| OR | ChatMessageWhereInput[] | No |
| NOT | ChatMessageWhereInput | ChatMessageWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| content | StringNullableFilter | String | Null | Yes |
| senderId | StringFilter | String | No |
| chatId | StringFilter | String | No |
| sender | UserScalarRelationFilter | UserWhereInput | No |
| chat | ChatScalarRelationFilter | ChatWhereInput | No |
| attachments | AttachmentListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| content | SortOrder | SortOrderInput | No |
| senderId | SortOrder | No |
| chatId | SortOrder | No |
| sender | UserOrderByWithRelationInput | No |
| chat | ChatOrderByWithRelationInput | No |
| attachments | AttachmentOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | ChatMessageWhereInput | ChatMessageWhereInput[] | No |
| OR | ChatMessageWhereInput[] | No |
| NOT | ChatMessageWhereInput | ChatMessageWhereInput[] | No |
| createdAt | DateTimeFilter | DateTime | No |
| content | StringNullableFilter | String | Null | Yes |
| senderId | StringFilter | String | No |
| chatId | StringFilter | String | No |
| sender | UserScalarRelationFilter | UserWhereInput | No |
| chat | ChatScalarRelationFilter | ChatWhereInput | No |
| attachments | AttachmentListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| content | SortOrder | SortOrderInput | No |
| senderId | SortOrder | No |
| chatId | SortOrder | No |
| _count | ChatMessageCountOrderByAggregateInput | No |
| _max | ChatMessageMaxOrderByAggregateInput | No |
| _min | ChatMessageMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ChatMessageScalarWhereWithAggregatesInput | ChatMessageScalarWhereWithAggregatesInput[] | No |
| OR | ChatMessageScalarWhereWithAggregatesInput[] | No |
| NOT | ChatMessageScalarWhereWithAggregatesInput | ChatMessageScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| content | StringNullableWithAggregatesFilter | String | Null | Yes |
| senderId | StringWithAggregatesFilter | String | No |
| chatId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| firstName | String | Null | Yes |
| lastName | String | Null | Yes |
| name | String | No |
| String | No | |
| emailVerified | Boolean | Null | Yes |
| image | String | Null | Yes |
| status | UserStatus | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| firstName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| lastName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| name | String | StringFieldUpdateOperationsInput | No |
| String | StringFieldUpdateOperationsInput | No | |
| emailVerified | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| status | UserStatus | EnumUserStatusFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| firstName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| lastName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| name | String | StringFieldUpdateOperationsInput | No |
| String | StringFieldUpdateOperationsInput | No | |
| emailVerified | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| status | UserStatus | EnumUserStatusFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| expiresAt | DateTime | No |
| token | String | No |
| ipAddress | String | Null | Yes |
| userAgent | String | Null | Yes |
| user | UserCreateNestedOneWithoutSessionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| expiresAt | DateTime | No |
| token | String | No |
| ipAddress | String | Null | Yes |
| userAgent | String | Null | Yes |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| expiresAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| token | String | StringFieldUpdateOperationsInput | No |
| ipAddress | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| userAgent | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| user | UserUpdateOneRequiredWithoutSessionsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| expiresAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| token | String | StringFieldUpdateOperationsInput | No |
| ipAddress | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| userAgent | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| expiresAt | DateTime | No |
| token | String | No |
| ipAddress | String | Null | Yes |
| userAgent | String | Null | Yes |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| expiresAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| token | String | StringFieldUpdateOperationsInput | No |
| ipAddress | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| userAgent | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| expiresAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| token | String | StringFieldUpdateOperationsInput | No |
| ipAddress | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| userAgent | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| accountId | String | No |
| providerId | String | No |
| accessToken | String | Null | Yes |
| refreshToken | String | Null | Yes |
| idToken | String | Null | Yes |
| accessTokenExpiresAt | DateTime | Null | Yes |
| refreshTokenExpiresAt | DateTime | Null | Yes |
| scope | String | Null | Yes |
| password | String | Null | Yes |
| user | UserCreateNestedOneWithoutAccountsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| accountId | String | No |
| providerId | String | No |
| accessToken | String | Null | Yes |
| refreshToken | String | Null | Yes |
| idToken | String | Null | Yes |
| accessTokenExpiresAt | DateTime | Null | Yes |
| refreshTokenExpiresAt | DateTime | Null | Yes |
| scope | String | Null | Yes |
| password | String | Null | Yes |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| accountId | String | StringFieldUpdateOperationsInput | No |
| providerId | String | StringFieldUpdateOperationsInput | No |
| accessToken | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| refreshToken | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| idToken | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| accessTokenExpiresAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| refreshTokenExpiresAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| scope | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| password | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| user | UserUpdateOneRequiredWithoutAccountsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| accountId | String | StringFieldUpdateOperationsInput | No |
| providerId | String | StringFieldUpdateOperationsInput | No |
| accessToken | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| refreshToken | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| idToken | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| accessTokenExpiresAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| refreshTokenExpiresAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| scope | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| password | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| accountId | String | No |
| providerId | String | No |
| accessToken | String | Null | Yes |
| refreshToken | String | Null | Yes |
| idToken | String | Null | Yes |
| accessTokenExpiresAt | DateTime | Null | Yes |
| refreshTokenExpiresAt | DateTime | Null | Yes |
| scope | String | Null | Yes |
| password | String | Null | Yes |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| accountId | String | StringFieldUpdateOperationsInput | No |
| providerId | String | StringFieldUpdateOperationsInput | No |
| accessToken | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| refreshToken | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| idToken | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| accessTokenExpiresAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| refreshTokenExpiresAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| scope | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| password | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| accountId | String | StringFieldUpdateOperationsInput | No |
| providerId | String | StringFieldUpdateOperationsInput | No |
| accessToken | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| refreshToken | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| idToken | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| accessTokenExpiresAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| refreshTokenExpiresAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| scope | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| password | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | Null | Yes |
| updatedAt | DateTime | Null | Yes |
| identifier | String | No |
| value | String | No |
| expiresAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | Null | Yes |
| updatedAt | DateTime | Null | Yes |
| identifier | String | No |
| value | String | No |
| expiresAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| updatedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| identifier | String | StringFieldUpdateOperationsInput | No |
| value | String | StringFieldUpdateOperationsInput | No |
| expiresAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| updatedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| identifier | String | StringFieldUpdateOperationsInput | No |
| value | String | StringFieldUpdateOperationsInput | No |
| expiresAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | Null | Yes |
| updatedAt | DateTime | Null | Yes |
| identifier | String | No |
| value | String | No |
| expiresAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| updatedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| identifier | String | StringFieldUpdateOperationsInput | No |
| value | String | StringFieldUpdateOperationsInput | No |
| expiresAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| updatedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| identifier | String | StringFieldUpdateOperationsInput | No |
| value | String | StringFieldUpdateOperationsInput | No |
| expiresAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| head | UserCreateNestedOneWithoutHeadedBusinessUnitInput | No |
| members | UserBusinessUnitCreateNestedManyWithoutBusinessUnitInput | No |
| roles | RoleCreateNestedManyWithoutBusinessUnitInput | No |
| requisitionTemplates | RequisitionTemplateCreateNestedManyWithoutBusinessUnitInput | No |
| requisitions | RequisitionCreateNestedManyWithoutFromBUInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| headId | String | No |
| members | UserBusinessUnitUncheckedCreateNestedManyWithoutBusinessUnitInput | No |
| roles | RoleUncheckedCreateNestedManyWithoutBusinessUnitInput | No |
| requisitionTemplates | RequisitionTemplateUncheckedCreateNestedManyWithoutBusinessUnitInput | No |
| requisitions | RequisitionUncheckedCreateNestedManyWithoutFromBUInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| head | UserUpdateOneRequiredWithoutHeadedBusinessUnitNestedInput | No |
| members | UserBusinessUnitUpdateManyWithoutBusinessUnitNestedInput | No |
| roles | RoleUpdateManyWithoutBusinessUnitNestedInput | No |
| requisitionTemplates | RequisitionTemplateUpdateManyWithoutBusinessUnitNestedInput | No |
| requisitions | RequisitionUpdateManyWithoutFromBUNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| headId | String | StringFieldUpdateOperationsInput | No |
| members | UserBusinessUnitUncheckedUpdateManyWithoutBusinessUnitNestedInput | No |
| roles | RoleUncheckedUpdateManyWithoutBusinessUnitNestedInput | No |
| requisitionTemplates | RequisitionTemplateUncheckedUpdateManyWithoutBusinessUnitNestedInput | No |
| requisitions | RequisitionUncheckedUpdateManyWithoutFromBUNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| headId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| headId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| membershipType | BUMembershipType | No |
| user | UserCreateNestedOneWithoutBusinessUnitsInput | No |
| businessUnit | BusinessUnitCreateNestedOneWithoutMembersInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| businessUnitId | String | No |
| membershipType | BUMembershipType | No |
| Name | Type | Nullable |
|---|---|---|
| membershipType | BUMembershipType | EnumBUMembershipTypeFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutBusinessUnitsNestedInput | No |
| businessUnit | BusinessUnitUpdateOneRequiredWithoutMembersNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | StringFieldUpdateOperationsInput | No |
| businessUnitId | String | StringFieldUpdateOperationsInput | No |
| membershipType | BUMembershipType | EnumBUMembershipTypeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| businessUnitId | String | No |
| membershipType | BUMembershipType | No |
| Name | Type | Nullable |
|---|---|---|
| membershipType | BUMembershipType | EnumBUMembershipTypeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | StringFieldUpdateOperationsInput | No |
| businessUnitId | String | StringFieldUpdateOperationsInput | No |
| membershipType | BUMembershipType | EnumBUMembershipTypeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| scope | RoleScope | No |
| isBUAdmin | Boolean | No |
| businessUnit | BusinessUnitCreateNestedOneWithoutRolesInput | No |
| userAssignments | UserRoleAssignmentCreateNestedManyWithoutRoleInput | No |
| accessibleTemplates | TemplateInitiatorAccessCreateNestedManyWithoutRoleInput | No |
| approvalStepDefinitions | ApprovalStepDefinitionCreateNestedManyWithoutApproverRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| scope | RoleScope | No |
| isBUAdmin | Boolean | No |
| businessUnitId | String | Null | Yes |
| userAssignments | UserRoleAssignmentUncheckedCreateNestedManyWithoutRoleInput | No |
| accessibleTemplates | TemplateInitiatorAccessUncheckedCreateNestedManyWithoutRoleInput | No |
| approvalStepDefinitions | ApprovalStepDefinitionUncheckedCreateNestedManyWithoutApproverRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| scope | RoleScope | EnumRoleScopeFieldUpdateOperationsInput | No |
| isBUAdmin | Boolean | BoolFieldUpdateOperationsInput | No |
| businessUnit | BusinessUnitUpdateOneWithoutRolesNestedInput | No |
| userAssignments | UserRoleAssignmentUpdateManyWithoutRoleNestedInput | No |
| accessibleTemplates | TemplateInitiatorAccessUpdateManyWithoutRoleNestedInput | No |
| approvalStepDefinitions | ApprovalStepDefinitionUpdateManyWithoutApproverRoleNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| scope | RoleScope | EnumRoleScopeFieldUpdateOperationsInput | No |
| isBUAdmin | Boolean | BoolFieldUpdateOperationsInput | No |
| businessUnitId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| userAssignments | UserRoleAssignmentUncheckedUpdateManyWithoutRoleNestedInput | No |
| accessibleTemplates | TemplateInitiatorAccessUncheckedUpdateManyWithoutRoleNestedInput | No |
| approvalStepDefinitions | ApprovalStepDefinitionUncheckedUpdateManyWithoutApproverRoleNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| scope | RoleScope | No |
| isBUAdmin | Boolean | No |
| businessUnitId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| scope | RoleScope | EnumRoleScopeFieldUpdateOperationsInput | No |
| isBUAdmin | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| scope | RoleScope | EnumRoleScopeFieldUpdateOperationsInput | No |
| isBUAdmin | Boolean | BoolFieldUpdateOperationsInput | No |
| businessUnitId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| assignedAt | DateTime | No |
| user | UserCreateNestedOneWithoutRoleAssignmentsInput | No |
| role | RoleCreateNestedOneWithoutUserAssignmentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| roleId | String | No |
| assignedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| assignedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutRoleAssignmentsNestedInput | No |
| role | RoleUpdateOneRequiredWithoutUserAssignmentsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | StringFieldUpdateOperationsInput | No |
| roleId | String | StringFieldUpdateOperationsInput | No |
| assignedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| roleId | String | No |
| assignedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| assignedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | StringFieldUpdateOperationsInput | No |
| roleId | String | StringFieldUpdateOperationsInput | No |
| assignedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| description | String | Null | Yes |
| businessUnit | BusinessUnitCreateNestedOneWithoutRequisitionTemplatesInput | No |
| fields | TemplateFieldCreateNestedManyWithoutTemplateInput | No |
| initiatorAccess | TemplateInitiatorAccessCreateNestedManyWithoutTemplateInput | No |
| approvalWorkflow | ApprovalWorkflowCreateNestedOneWithoutTemplatesInput | No |
| requisitions | RequisitionCreateNestedManyWithoutTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| description | String | Null | Yes |
| businessUnitId | String | No |
| approvalWorkflowId | String | Null | Yes |
| fields | TemplateFieldUncheckedCreateNestedManyWithoutTemplateInput | No |
| initiatorAccess | TemplateInitiatorAccessUncheckedCreateNestedManyWithoutTemplateInput | No |
| requisitions | RequisitionUncheckedCreateNestedManyWithoutTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| businessUnit | BusinessUnitUpdateOneRequiredWithoutRequisitionTemplatesNestedInput | No |
| fields | TemplateFieldUpdateManyWithoutTemplateNestedInput | No |
| initiatorAccess | TemplateInitiatorAccessUpdateManyWithoutTemplateNestedInput | No |
| approvalWorkflow | ApprovalWorkflowUpdateOneWithoutTemplatesNestedInput | No |
| requisitions | RequisitionUpdateManyWithoutTemplateNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| businessUnitId | String | StringFieldUpdateOperationsInput | No |
| approvalWorkflowId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| fields | TemplateFieldUncheckedUpdateManyWithoutTemplateNestedInput | No |
| initiatorAccess | TemplateInitiatorAccessUncheckedUpdateManyWithoutTemplateNestedInput | No |
| requisitions | RequisitionUncheckedUpdateManyWithoutTemplateNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| description | String | Null | Yes |
| businessUnitId | String | No |
| approvalWorkflowId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| businessUnitId | String | StringFieldUpdateOperationsInput | No |
| approvalWorkflowId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| label | String | No |
| fieldType | FieldType | No |
| isRequired | Boolean | No |
| placeholder | String | Null | Yes |
| order | Int | No |
| template | RequisitionTemplateCreateNestedOneWithoutFieldsInput | No |
| options | FieldOptionCreateNestedManyWithoutFieldInput | No |
| listColumns | TemplateFieldCreateNestedManyWithoutParentListFieldInput | No |
| parentListField | TemplateFieldCreateNestedOneWithoutListColumnsInput | No |
| submittedValues | RequisitionValueCreateNestedManyWithoutTemplateFieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| templateId | String | No |
| label | String | No |
| fieldType | FieldType | No |
| isRequired | Boolean | No |
| placeholder | String | Null | Yes |
| order | Int | No |
| parentListFieldId | String | Null | Yes |
| options | FieldOptionUncheckedCreateNestedManyWithoutFieldInput | No |
| listColumns | TemplateFieldUncheckedCreateNestedManyWithoutParentListFieldInput | No |
| submittedValues | RequisitionValueUncheckedCreateNestedManyWithoutTemplateFieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| label | String | StringFieldUpdateOperationsInput | No |
| fieldType | FieldType | EnumFieldTypeFieldUpdateOperationsInput | No |
| isRequired | Boolean | BoolFieldUpdateOperationsInput | No |
| placeholder | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| order | Int | IntFieldUpdateOperationsInput | No |
| template | RequisitionTemplateUpdateOneRequiredWithoutFieldsNestedInput | No |
| options | FieldOptionUpdateManyWithoutFieldNestedInput | No |
| listColumns | TemplateFieldUpdateManyWithoutParentListFieldNestedInput | No |
| parentListField | TemplateFieldUpdateOneWithoutListColumnsNestedInput | No |
| submittedValues | RequisitionValueUpdateManyWithoutTemplateFieldNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| templateId | String | StringFieldUpdateOperationsInput | No |
| label | String | StringFieldUpdateOperationsInput | No |
| fieldType | FieldType | EnumFieldTypeFieldUpdateOperationsInput | No |
| isRequired | Boolean | BoolFieldUpdateOperationsInput | No |
| placeholder | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| order | Int | IntFieldUpdateOperationsInput | No |
| parentListFieldId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| options | FieldOptionUncheckedUpdateManyWithoutFieldNestedInput | No |
| listColumns | TemplateFieldUncheckedUpdateManyWithoutParentListFieldNestedInput | No |
| submittedValues | RequisitionValueUncheckedUpdateManyWithoutTemplateFieldNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| templateId | String | No |
| label | String | No |
| fieldType | FieldType | No |
| isRequired | Boolean | No |
| placeholder | String | Null | Yes |
| order | Int | No |
| parentListFieldId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| label | String | StringFieldUpdateOperationsInput | No |
| fieldType | FieldType | EnumFieldTypeFieldUpdateOperationsInput | No |
| isRequired | Boolean | BoolFieldUpdateOperationsInput | No |
| placeholder | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| order | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| templateId | String | StringFieldUpdateOperationsInput | No |
| label | String | StringFieldUpdateOperationsInput | No |
| fieldType | FieldType | EnumFieldTypeFieldUpdateOperationsInput | No |
| isRequired | Boolean | BoolFieldUpdateOperationsInput | No |
| placeholder | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| order | Int | IntFieldUpdateOperationsInput | No |
| parentListFieldId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| label | String | No |
| value | String | No |
| order | Int | No |
| field | TemplateFieldCreateNestedOneWithoutOptionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| fieldId | String | No |
| label | String | No |
| value | String | No |
| order | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| label | String | StringFieldUpdateOperationsInput | No |
| value | String | StringFieldUpdateOperationsInput | No |
| order | Int | IntFieldUpdateOperationsInput | No |
| field | TemplateFieldUpdateOneRequiredWithoutOptionsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| fieldId | String | StringFieldUpdateOperationsInput | No |
| label | String | StringFieldUpdateOperationsInput | No |
| value | String | StringFieldUpdateOperationsInput | No |
| order | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| fieldId | String | No |
| label | String | No |
| value | String | No |
| order | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| label | String | StringFieldUpdateOperationsInput | No |
| value | String | StringFieldUpdateOperationsInput | No |
| order | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| fieldId | String | StringFieldUpdateOperationsInput | No |
| label | String | StringFieldUpdateOperationsInput | No |
| value | String | StringFieldUpdateOperationsInput | No |
| order | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| template | RequisitionTemplateCreateNestedOneWithoutInitiatorAccessInput | No |
| role | RoleCreateNestedOneWithoutAccessibleTemplatesInput | No |
| Name | Type | Nullable |
|---|---|---|
| templateId | String | No |
| roleId | String | No |
| Name | Type | Nullable |
|---|---|---|
| template | RequisitionTemplateUpdateOneRequiredWithoutInitiatorAccessNestedInput | No |
| role | RoleUpdateOneRequiredWithoutAccessibleTemplatesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| templateId | String | StringFieldUpdateOperationsInput | No |
| roleId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| templateId | String | No |
| roleId | String | No |
| Name | Type | Nullable |
|---|
| Name | Type | Nullable |
|---|---|---|
| templateId | String | StringFieldUpdateOperationsInput | No |
| roleId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| steps | ApprovalStepDefinitionCreateNestedManyWithoutWorkflowInput | No |
| templates | RequisitionTemplateCreateNestedManyWithoutApprovalWorkflowInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| steps | ApprovalStepDefinitionUncheckedCreateNestedManyWithoutWorkflowInput | No |
| templates | RequisitionTemplateUncheckedCreateNestedManyWithoutApprovalWorkflowInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| steps | ApprovalStepDefinitionUpdateManyWithoutWorkflowNestedInput | No |
| templates | RequisitionTemplateUpdateManyWithoutApprovalWorkflowNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| steps | ApprovalStepDefinitionUncheckedUpdateManyWithoutWorkflowNestedInput | No |
| templates | RequisitionTemplateUncheckedUpdateManyWithoutApprovalWorkflowNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| stepNumber | Int | No |
| workflow | ApprovalWorkflowCreateNestedOneWithoutStepsInput | No |
| approverRole | RoleCreateNestedOneWithoutApprovalStepDefinitionsInput | No |
| requisitionApprovals | RequisitionApprovalCreateNestedManyWithoutStepDefinitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| workflowId | String | No |
| stepNumber | Int | No |
| approverRoleId | String | No |
| requisitionApprovals | RequisitionApprovalUncheckedCreateNestedManyWithoutStepDefinitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| stepNumber | Int | IntFieldUpdateOperationsInput | No |
| workflow | ApprovalWorkflowUpdateOneRequiredWithoutStepsNestedInput | No |
| approverRole | RoleUpdateOneRequiredWithoutApprovalStepDefinitionsNestedInput | No |
| requisitionApprovals | RequisitionApprovalUpdateManyWithoutStepDefinitionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| workflowId | String | StringFieldUpdateOperationsInput | No |
| stepNumber | Int | IntFieldUpdateOperationsInput | No |
| approverRoleId | String | StringFieldUpdateOperationsInput | No |
| requisitionApprovals | RequisitionApprovalUncheckedUpdateManyWithoutStepDefinitionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| workflowId | String | No |
| stepNumber | Int | No |
| approverRoleId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| stepNumber | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| workflowId | String | StringFieldUpdateOperationsInput | No |
| stepNumber | Int | IntFieldUpdateOperationsInput | No |
| approverRoleId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| overallStatus | RequisitionStatus | No |
| initiator | UserCreateNestedOneWithoutInitiatedRequisitionsInput | No |
| fromBU | BusinessUnitCreateNestedOneWithoutRequisitionsInput | No |
| template | RequisitionTemplateCreateNestedOneWithoutRequisitionsInput | No |
| approvalHistory | RequisitionApprovalCreateNestedManyWithoutRequisitionInput | No |
| submittedValues | RequisitionValueCreateNestedManyWithoutRequisitionInput | No |
| attachments | AttachmentCreateNestedManyWithoutRequisitionInput | No |
| actionLog | CommentCreateNestedManyWithoutRequisitionInput | No |
| notifications | NotificationCreateNestedManyWithoutRequisitionInput | No |
| tags | RequisitionTagCreateNestedManyWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| initiatorId | String | No |
| businessUnitId | String | No |
| templateId | String | No |
| overallStatus | RequisitionStatus | No |
| approvalHistory | RequisitionApprovalUncheckedCreateNestedManyWithoutRequisitionInput | No |
| submittedValues | RequisitionValueUncheckedCreateNestedManyWithoutRequisitionInput | No |
| attachments | AttachmentUncheckedCreateNestedManyWithoutRequisitionInput | No |
| actionLog | CommentUncheckedCreateNestedManyWithoutRequisitionInput | No |
| notifications | NotificationUncheckedCreateNestedManyWithoutRequisitionInput | No |
| tags | RequisitionTagUncheckedCreateNestedManyWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| overallStatus | RequisitionStatus | EnumRequisitionStatusFieldUpdateOperationsInput | No |
| initiator | UserUpdateOneRequiredWithoutInitiatedRequisitionsNestedInput | No |
| fromBU | BusinessUnitUpdateOneRequiredWithoutRequisitionsNestedInput | No |
| template | RequisitionTemplateUpdateOneRequiredWithoutRequisitionsNestedInput | No |
| approvalHistory | RequisitionApprovalUpdateManyWithoutRequisitionNestedInput | No |
| submittedValues | RequisitionValueUpdateManyWithoutRequisitionNestedInput | No |
| attachments | AttachmentUpdateManyWithoutRequisitionNestedInput | No |
| actionLog | CommentUpdateManyWithoutRequisitionNestedInput | No |
| notifications | NotificationUpdateManyWithoutRequisitionNestedInput | No |
| tags | RequisitionTagUpdateManyWithoutRequisitionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| initiatorId | String | StringFieldUpdateOperationsInput | No |
| businessUnitId | String | StringFieldUpdateOperationsInput | No |
| templateId | String | StringFieldUpdateOperationsInput | No |
| overallStatus | RequisitionStatus | EnumRequisitionStatusFieldUpdateOperationsInput | No |
| approvalHistory | RequisitionApprovalUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| submittedValues | RequisitionValueUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| attachments | AttachmentUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| actionLog | CommentUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| notifications | NotificationUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| tags | RequisitionTagUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| initiatorId | String | No |
| businessUnitId | String | No |
| templateId | String | No |
| overallStatus | RequisitionStatus | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| overallStatus | RequisitionStatus | EnumRequisitionStatusFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| initiatorId | String | StringFieldUpdateOperationsInput | No |
| businessUnitId | String | StringFieldUpdateOperationsInput | No |
| templateId | String | StringFieldUpdateOperationsInput | No |
| overallStatus | RequisitionStatus | EnumRequisitionStatusFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| status | ApprovalStatus | No |
| actionedAt | DateTime | Null | Yes |
| requisition | RequisitionCreateNestedOneWithoutApprovalHistoryInput | No |
| stepDefinition | ApprovalStepDefinitionCreateNestedOneWithoutRequisitionApprovalsInput | No |
| approver | UserCreateNestedOneWithoutAssignedApprovalsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| requisitionId | String | No |
| stepDefinitionId | String | No |
| approverId | String | Null | Yes |
| status | ApprovalStatus | No |
| actionedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| status | ApprovalStatus | EnumApprovalStatusFieldUpdateOperationsInput | No |
| actionedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| requisition | RequisitionUpdateOneRequiredWithoutApprovalHistoryNestedInput | No |
| stepDefinition | ApprovalStepDefinitionUpdateOneRequiredWithoutRequisitionApprovalsNestedInput | No |
| approver | UserUpdateOneWithoutAssignedApprovalsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| requisitionId | String | StringFieldUpdateOperationsInput | No |
| stepDefinitionId | String | StringFieldUpdateOperationsInput | No |
| approverId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| status | ApprovalStatus | EnumApprovalStatusFieldUpdateOperationsInput | No |
| actionedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| requisitionId | String | No |
| stepDefinitionId | String | No |
| approverId | String | Null | Yes |
| status | ApprovalStatus | No |
| actionedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| status | ApprovalStatus | EnumApprovalStatusFieldUpdateOperationsInput | No |
| actionedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| requisitionId | String | StringFieldUpdateOperationsInput | No |
| stepDefinitionId | String | StringFieldUpdateOperationsInput | No |
| approverId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| status | ApprovalStatus | EnumApprovalStatusFieldUpdateOperationsInput | No |
| actionedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| value | String | No |
| rowIndex | Int | Null | Yes |
| requisition | RequisitionCreateNestedOneWithoutSubmittedValuesInput | No |
| templateField | TemplateFieldCreateNestedOneWithoutSubmittedValuesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| requisitionId | String | No |
| templateFieldId | String | No |
| value | String | No |
| rowIndex | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| value | String | StringFieldUpdateOperationsInput | No |
| rowIndex | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| requisition | RequisitionUpdateOneRequiredWithoutSubmittedValuesNestedInput | No |
| templateField | TemplateFieldUpdateOneRequiredWithoutSubmittedValuesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| requisitionId | String | StringFieldUpdateOperationsInput | No |
| templateFieldId | String | StringFieldUpdateOperationsInput | No |
| value | String | StringFieldUpdateOperationsInput | No |
| rowIndex | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| requisitionId | String | No |
| templateFieldId | String | No |
| value | String | No |
| rowIndex | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| value | String | StringFieldUpdateOperationsInput | No |
| rowIndex | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| requisitionId | String | StringFieldUpdateOperationsInput | No |
| templateFieldId | String | StringFieldUpdateOperationsInput | No |
| value | String | StringFieldUpdateOperationsInput | No |
| rowIndex | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| url | String | No |
| filename | String | No |
| filetype | String | No |
| size | Int | Null | Yes |
| uploader | UserCreateNestedOneWithoutUploadedAttachmentsInput | No |
| requisition | RequisitionCreateNestedOneWithoutAttachmentsInput | No |
| comment | CommentCreateNestedOneWithoutAttachmentsInput | No |
| chatMessage | ChatMessageCreateNestedOneWithoutAttachmentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| url | String | No |
| filename | String | No |
| filetype | String | No |
| size | Int | Null | Yes |
| uploaderId | String | No |
| requisitionId | String | Null | Yes |
| commentId | String | Null | Yes |
| chatMessageId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| filename | String | StringFieldUpdateOperationsInput | No |
| filetype | String | StringFieldUpdateOperationsInput | No |
| size | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| uploader | UserUpdateOneRequiredWithoutUploadedAttachmentsNestedInput | No |
| requisition | RequisitionUpdateOneWithoutAttachmentsNestedInput | No |
| comment | CommentUpdateOneWithoutAttachmentsNestedInput | No |
| chatMessage | ChatMessageUpdateOneWithoutAttachmentsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| filename | String | StringFieldUpdateOperationsInput | No |
| filetype | String | StringFieldUpdateOperationsInput | No |
| size | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| uploaderId | String | StringFieldUpdateOperationsInput | No |
| requisitionId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| commentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| chatMessageId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| url | String | No |
| filename | String | No |
| filetype | String | No |
| size | Int | Null | Yes |
| uploaderId | String | No |
| requisitionId | String | Null | Yes |
| commentId | String | Null | Yes |
| chatMessageId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| filename | String | StringFieldUpdateOperationsInput | No |
| filetype | String | StringFieldUpdateOperationsInput | No |
| size | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| filename | String | StringFieldUpdateOperationsInput | No |
| filetype | String | StringFieldUpdateOperationsInput | No |
| size | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| uploaderId | String | StringFieldUpdateOperationsInput | No |
| requisitionId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| commentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| chatMessageId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| content | String | No |
| action | ActionType | No |
| author | UserCreateNestedOneWithoutCommentsInput | No |
| requisition | RequisitionCreateNestedOneWithoutActionLogInput | No |
| attachments | AttachmentCreateNestedManyWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| content | String | No |
| action | ActionType | No |
| authorId | String | No |
| requisitionId | String | No |
| attachments | AttachmentUncheckedCreateNestedManyWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| action | ActionType | EnumActionTypeFieldUpdateOperationsInput | No |
| author | UserUpdateOneRequiredWithoutCommentsNestedInput | No |
| requisition | RequisitionUpdateOneRequiredWithoutActionLogNestedInput | No |
| attachments | AttachmentUpdateManyWithoutCommentNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| action | ActionType | EnumActionTypeFieldUpdateOperationsInput | No |
| authorId | String | StringFieldUpdateOperationsInput | No |
| requisitionId | String | StringFieldUpdateOperationsInput | No |
| attachments | AttachmentUncheckedUpdateManyWithoutCommentNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| content | String | No |
| action | ActionType | No |
| authorId | String | No |
| requisitionId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| action | ActionType | EnumActionTypeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| action | ActionType | EnumActionTypeFieldUpdateOperationsInput | No |
| authorId | String | StringFieldUpdateOperationsInput | No |
| requisitionId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| message | String | No |
| isRead | Boolean | No |
| recipient | UserCreateNestedOneWithoutNotificationsInput | No |
| requisition | RequisitionCreateNestedOneWithoutNotificationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| message | String | No |
| isRead | Boolean | No |
| recipientId | String | No |
| requisitionId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| isRead | Boolean | BoolFieldUpdateOperationsInput | No |
| recipient | UserUpdateOneRequiredWithoutNotificationsNestedInput | No |
| requisition | RequisitionUpdateOneWithoutNotificationsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| isRead | Boolean | BoolFieldUpdateOperationsInput | No |
| recipientId | String | StringFieldUpdateOperationsInput | No |
| requisitionId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| message | String | No |
| isRead | Boolean | No |
| recipientId | String | No |
| requisitionId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| isRead | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| isRead | Boolean | BoolFieldUpdateOperationsInput | No |
| recipientId | String | StringFieldUpdateOperationsInput | No |
| requisitionId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| label | String | No |
| color | String | No |
| creator | UserCreateNestedOneWithoutCreatedTagsInput | No |
| requisitions | RequisitionTagCreateNestedManyWithoutTagInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| label | String | No |
| color | String | No |
| creatorId | String | No |
| requisitions | RequisitionTagUncheckedCreateNestedManyWithoutTagInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| label | String | StringFieldUpdateOperationsInput | No |
| color | String | StringFieldUpdateOperationsInput | No |
| creator | UserUpdateOneRequiredWithoutCreatedTagsNestedInput | No |
| requisitions | RequisitionTagUpdateManyWithoutTagNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| label | String | StringFieldUpdateOperationsInput | No |
| color | String | StringFieldUpdateOperationsInput | No |
| creatorId | String | StringFieldUpdateOperationsInput | No |
| requisitions | RequisitionTagUncheckedUpdateManyWithoutTagNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| label | String | No |
| color | String | No |
| creatorId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| label | String | StringFieldUpdateOperationsInput | No |
| color | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| label | String | StringFieldUpdateOperationsInput | No |
| color | String | StringFieldUpdateOperationsInput | No |
| creatorId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| assignedAt | DateTime | No |
| requisition | RequisitionCreateNestedOneWithoutTagsInput | No |
| tag | TagCreateNestedOneWithoutRequisitionsInput | No |
| assignedBy | UserCreateNestedOneWithoutTaggedRequisitionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| requisitionId | String | No |
| tagId | String | No |
| assignedById | String | No |
| assignedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| assignedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| requisition | RequisitionUpdateOneRequiredWithoutTagsNestedInput | No |
| tag | TagUpdateOneRequiredWithoutRequisitionsNestedInput | No |
| assignedBy | UserUpdateOneRequiredWithoutTaggedRequisitionsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| requisitionId | String | StringFieldUpdateOperationsInput | No |
| tagId | String | StringFieldUpdateOperationsInput | No |
| assignedById | String | StringFieldUpdateOperationsInput | No |
| assignedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| requisitionId | String | No |
| tagId | String | No |
| assignedById | String | No |
| assignedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| assignedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| requisitionId | String | StringFieldUpdateOperationsInput | No |
| tagId | String | StringFieldUpdateOperationsInput | No |
| assignedById | String | StringFieldUpdateOperationsInput | No |
| assignedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| chatType | ChatType | No |
| groupName | String | Null | Yes |
| groupImageUrl | String | Null | Yes |
| creator | UserCreateNestedOneWithoutCreatedGroupChatsInput | No |
| participants | ChatParticipantCreateNestedManyWithoutChatInput | No |
| messages | ChatMessageCreateNestedManyWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| chatType | ChatType | No |
| groupName | String | Null | Yes |
| groupImageUrl | String | Null | Yes |
| creatorId | String | Null | Yes |
| participants | ChatParticipantUncheckedCreateNestedManyWithoutChatInput | No |
| messages | ChatMessageUncheckedCreateNestedManyWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| chatType | ChatType | EnumChatTypeFieldUpdateOperationsInput | No |
| groupName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| groupImageUrl | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| creator | UserUpdateOneWithoutCreatedGroupChatsNestedInput | No |
| participants | ChatParticipantUpdateManyWithoutChatNestedInput | No |
| messages | ChatMessageUpdateManyWithoutChatNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| chatType | ChatType | EnumChatTypeFieldUpdateOperationsInput | No |
| groupName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| groupImageUrl | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| creatorId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| participants | ChatParticipantUncheckedUpdateManyWithoutChatNestedInput | No |
| messages | ChatMessageUncheckedUpdateManyWithoutChatNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| chatType | ChatType | No |
| groupName | String | Null | Yes |
| groupImageUrl | String | Null | Yes |
| creatorId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| chatType | ChatType | EnumChatTypeFieldUpdateOperationsInput | No |
| groupName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| groupImageUrl | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| chatType | ChatType | EnumChatTypeFieldUpdateOperationsInput | No |
| groupName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| groupImageUrl | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| creatorId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| lastReadAt | DateTime | Null | Yes |
| chat | ChatCreateNestedOneWithoutParticipantsInput | No |
| user | UserCreateNestedOneWithoutChatsInput | No |
| Name | Type | Nullable |
|---|---|---|
| chatId | String | No |
| userId | String | No |
| lastReadAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| lastReadAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| chat | ChatUpdateOneRequiredWithoutParticipantsNestedInput | No |
| user | UserUpdateOneRequiredWithoutChatsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| chatId | String | StringFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| lastReadAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| chatId | String | No |
| userId | String | No |
| lastReadAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| lastReadAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| chatId | String | StringFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| lastReadAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| content | String | Null | Yes |
| sender | UserCreateNestedOneWithoutSentChatMessagesInput | No |
| chat | ChatCreateNestedOneWithoutMessagesInput | No |
| attachments | AttachmentCreateNestedManyWithoutChatMessageInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| content | String | Null | Yes |
| senderId | String | No |
| chatId | String | No |
| attachments | AttachmentUncheckedCreateNestedManyWithoutChatMessageInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| sender | UserUpdateOneRequiredWithoutSentChatMessagesNestedInput | No |
| chat | ChatUpdateOneRequiredWithoutMessagesNestedInput | No |
| attachments | AttachmentUpdateManyWithoutChatMessageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| senderId | String | StringFieldUpdateOperationsInput | No |
| chatId | String | StringFieldUpdateOperationsInput | No |
| attachments | AttachmentUncheckedUpdateManyWithoutChatMessageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| content | String | Null | Yes |
| senderId | String | No |
| chatId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| senderId | String | StringFieldUpdateOperationsInput | No |
| chatId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | No |
| in | String | ListStringFieldRefInput | No |
| notIn | String | ListStringFieldRefInput | No |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| mode | QueryMode | No |
| not | String | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | No |
| in | DateTime | ListDateTimeFieldRefInput | No |
| notIn | DateTime | ListDateTimeFieldRefInput | No |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | Null | Yes |
| in | String | ListStringFieldRefInput | Null | Yes |
| notIn | String | ListStringFieldRefInput | Null | Yes |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| mode | QueryMode | No |
| not | String | NestedStringNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | Null | Yes |
| not | Boolean | NestedBoolNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | UserStatus | EnumUserStatusFieldRefInput | No |
| in | UserStatus[] | ListEnumUserStatusFieldRefInput | No |
| notIn | UserStatus[] | ListEnumUserStatusFieldRefInput | No |
| not | UserStatus | NestedEnumUserStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| every | SessionWhereInput | No |
| some | SessionWhereInput | No |
| none | SessionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | AccountWhereInput | No |
| some | AccountWhereInput | No |
| none | AccountWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | UserRoleAssignmentWhereInput | No |
| some | UserRoleAssignmentWhereInput | No |
| none | UserRoleAssignmentWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | UserBusinessUnitWhereInput | No |
| some | UserBusinessUnitWhereInput | No |
| none | UserBusinessUnitWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | NotificationWhereInput | No |
| some | NotificationWhereInput | No |
| none | NotificationWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | BusinessUnitWhereInput | Null | Yes |
| isNot | BusinessUnitWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| every | RequisitionWhereInput | No |
| some | RequisitionWhereInput | No |
| none | RequisitionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | RequisitionApprovalWhereInput | No |
| some | RequisitionApprovalWhereInput | No |
| none | RequisitionApprovalWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | CommentWhereInput | No |
| some | CommentWhereInput | No |
| none | CommentWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | AttachmentWhereInput | No |
| some | AttachmentWhereInput | No |
| none | AttachmentWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | TagWhereInput | No |
| some | TagWhereInput | No |
| none | TagWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | RequisitionTagWhereInput | No |
| some | RequisitionTagWhereInput | No |
| none | RequisitionTagWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | ChatParticipantWhereInput | No |
| some | ChatParticipantWhereInput | No |
| none | ChatParticipantWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | ChatMessageWhereInput | No |
| some | ChatMessageWhereInput | No |
| none | ChatMessageWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | ChatWhereInput | No |
| some | ChatWhereInput | No |
| none | ChatWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| sort | SortOrder | No |
| nulls | NullsOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| firstName | SortOrder | No |
| lastName | SortOrder | No |
| name | SortOrder | No |
| SortOrder | No | |
| emailVerified | SortOrder | No |
| image | SortOrder | No |
| status | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| firstName | SortOrder | No |
| lastName | SortOrder | No |
| name | SortOrder | No |
| SortOrder | No | |
| emailVerified | SortOrder | No |
| image | SortOrder | No |
| status | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| firstName | SortOrder | No |
| lastName | SortOrder | No |
| name | SortOrder | No |
| SortOrder | No | |
| emailVerified | SortOrder | No |
| image | SortOrder | No |
| status | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | No |
| in | String | ListStringFieldRefInput | No |
| notIn | String | ListStringFieldRefInput | No |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| mode | QueryMode | No |
| not | String | NestedStringWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedStringFilter | No |
| _max | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | No |
| in | DateTime | ListDateTimeFieldRefInput | No |
| notIn | DateTime | ListDateTimeFieldRefInput | No |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedDateTimeFilter | No |
| _max | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | Null | Yes |
| in | String | ListStringFieldRefInput | Null | Yes |
| notIn | String | ListStringFieldRefInput | Null | Yes |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| mode | QueryMode | No |
| not | String | NestedStringNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedStringNullableFilter | No |
| _max | NestedStringNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | Null | Yes |
| not | Boolean | NestedBoolNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedBoolNullableFilter | No |
| _max | NestedBoolNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | UserStatus | EnumUserStatusFieldRefInput | No |
| in | UserStatus[] | ListEnumUserStatusFieldRefInput | No |
| notIn | UserStatus[] | ListEnumUserStatusFieldRefInput | No |
| not | UserStatus | NestedEnumUserStatusWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumUserStatusFilter | No |
| _max | NestedEnumUserStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | UserWhereInput | No |
| isNot | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| expiresAt | SortOrder | No |
| token | SortOrder | No |
| ipAddress | SortOrder | No |
| userAgent | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| expiresAt | SortOrder | No |
| token | SortOrder | No |
| ipAddress | SortOrder | No |
| userAgent | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| expiresAt | SortOrder | No |
| token | SortOrder | No |
| ipAddress | SortOrder | No |
| userAgent | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | Null | Yes |
| in | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| notIn | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| accountId | SortOrder | No |
| providerId | SortOrder | No |
| accessToken | SortOrder | No |
| refreshToken | SortOrder | No |
| idToken | SortOrder | No |
| accessTokenExpiresAt | SortOrder | No |
| refreshTokenExpiresAt | SortOrder | No |
| scope | SortOrder | No |
| password | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| accountId | SortOrder | No |
| providerId | SortOrder | No |
| accessToken | SortOrder | No |
| refreshToken | SortOrder | No |
| idToken | SortOrder | No |
| accessTokenExpiresAt | SortOrder | No |
| refreshTokenExpiresAt | SortOrder | No |
| scope | SortOrder | No |
| password | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| accountId | SortOrder | No |
| providerId | SortOrder | No |
| accessToken | SortOrder | No |
| refreshToken | SortOrder | No |
| idToken | SortOrder | No |
| accessTokenExpiresAt | SortOrder | No |
| refreshTokenExpiresAt | SortOrder | No |
| scope | SortOrder | No |
| password | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | Null | Yes |
| in | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| notIn | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedDateTimeNullableFilter | No |
| _max | NestedDateTimeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| identifier | SortOrder | No |
| value | SortOrder | No |
| expiresAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| identifier | SortOrder | No |
| value | SortOrder | No |
| expiresAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| identifier | SortOrder | No |
| value | SortOrder | No |
| expiresAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| every | RoleWhereInput | No |
| some | RoleWhereInput | No |
| none | RoleWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | RequisitionTemplateWhereInput | No |
| some | RequisitionTemplateWhereInput | No |
| none | RequisitionTemplateWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| name | SortOrder | No |
| headId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| name | SortOrder | No |
| headId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| name | SortOrder | No |
| headId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | BUMembershipType | EnumBUMembershipTypeFieldRefInput | No |
| in | BUMembershipType[] | ListEnumBUMembershipTypeFieldRefInput | No |
| notIn | BUMembershipType[] | ListEnumBUMembershipTypeFieldRefInput | No |
| not | BUMembershipType | NestedEnumBUMembershipTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | BusinessUnitWhereInput | No |
| isNot | BusinessUnitWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| businessUnitId | String | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| businessUnitId | SortOrder | No |
| membershipType | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| businessUnitId | SortOrder | No |
| membershipType | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| businessUnitId | SortOrder | No |
| membershipType | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | BUMembershipType | EnumBUMembershipTypeFieldRefInput | No |
| in | BUMembershipType[] | ListEnumBUMembershipTypeFieldRefInput | No |
| notIn | BUMembershipType[] | ListEnumBUMembershipTypeFieldRefInput | No |
| not | BUMembershipType | NestedEnumBUMembershipTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumBUMembershipTypeFilter | No |
| _max | NestedEnumBUMembershipTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | RoleScope | EnumRoleScopeFieldRefInput | No |
| in | RoleScope[] | ListEnumRoleScopeFieldRefInput | No |
| notIn | RoleScope[] | ListEnumRoleScopeFieldRefInput | No |
| not | RoleScope | NestedEnumRoleScopeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | No |
| not | Boolean | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| every | TemplateInitiatorAccessWhereInput | No |
| some | TemplateInitiatorAccessWhereInput | No |
| none | TemplateInitiatorAccessWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | ApprovalStepDefinitionWhereInput | No |
| some | ApprovalStepDefinitionWhereInput | No |
| none | ApprovalStepDefinitionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| businessUnitId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| name | SortOrder | No |
| scope | SortOrder | No |
| isBUAdmin | SortOrder | No |
| businessUnitId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| name | SortOrder | No |
| scope | SortOrder | No |
| isBUAdmin | SortOrder | No |
| businessUnitId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| name | SortOrder | No |
| scope | SortOrder | No |
| isBUAdmin | SortOrder | No |
| businessUnitId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | RoleScope | EnumRoleScopeFieldRefInput | No |
| in | RoleScope[] | ListEnumRoleScopeFieldRefInput | No |
| notIn | RoleScope[] | ListEnumRoleScopeFieldRefInput | No |
| not | RoleScope | NestedEnumRoleScopeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumRoleScopeFilter | No |
| _max | NestedEnumRoleScopeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | No |
| not | Boolean | NestedBoolWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedBoolFilter | No |
| _max | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | RoleWhereInput | No |
| isNot | RoleWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| roleId | String | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| roleId | SortOrder | No |
| assignedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| roleId | SortOrder | No |
| assignedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| roleId | SortOrder | No |
| assignedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| every | TemplateFieldWhereInput | No |
| some | TemplateFieldWhereInput | No |
| none | TemplateFieldWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | ApprovalWorkflowWhereInput | Null | Yes |
| isNot | ApprovalWorkflowWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| businessUnitId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| businessUnitId | SortOrder | No |
| approvalWorkflowId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| businessUnitId | SortOrder | No |
| approvalWorkflowId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| businessUnitId | SortOrder | No |
| approvalWorkflowId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | FieldType | EnumFieldTypeFieldRefInput | No |
| in | FieldType[] | ListEnumFieldTypeFieldRefInput | No |
| notIn | FieldType[] | ListEnumFieldTypeFieldRefInput | No |
| not | FieldType | NestedEnumFieldTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | No |
| in | Int | ListIntFieldRefInput | No |
| notIn | Int | ListIntFieldRefInput | No |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | RequisitionTemplateWhereInput | No |
| isNot | RequisitionTemplateWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | FieldOptionWhereInput | No |
| some | FieldOptionWhereInput | No |
| none | FieldOptionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | TemplateFieldWhereInput | Null | Yes |
| isNot | TemplateFieldWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| every | RequisitionValueWhereInput | No |
| some | RequisitionValueWhereInput | No |
| none | RequisitionValueWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| templateId | String | No |
| label | String | No |
| parentListFieldId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| templateId | SortOrder | No |
| label | SortOrder | No |
| fieldType | SortOrder | No |
| isRequired | SortOrder | No |
| placeholder | SortOrder | No |
| order | SortOrder | No |
| parentListFieldId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| order | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| templateId | SortOrder | No |
| label | SortOrder | No |
| fieldType | SortOrder | No |
| isRequired | SortOrder | No |
| placeholder | SortOrder | No |
| order | SortOrder | No |
| parentListFieldId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| templateId | SortOrder | No |
| label | SortOrder | No |
| fieldType | SortOrder | No |
| isRequired | SortOrder | No |
| placeholder | SortOrder | No |
| order | SortOrder | No |
| parentListFieldId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| order | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | FieldType | EnumFieldTypeFieldRefInput | No |
| in | FieldType[] | ListEnumFieldTypeFieldRefInput | No |
| notIn | FieldType[] | ListEnumFieldTypeFieldRefInput | No |
| not | FieldType | NestedEnumFieldTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumFieldTypeFilter | No |
| _max | NestedEnumFieldTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | No |
| in | Int | ListIntFieldRefInput | No |
| notIn | Int | ListIntFieldRefInput | No |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedFloatFilter | No |
| _sum | NestedIntFilter | No |
| _min | NestedIntFilter | No |
| _max | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | TemplateFieldWhereInput | No |
| isNot | TemplateFieldWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| fieldId | String | No |
| value | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| fieldId | SortOrder | No |
| label | SortOrder | No |
| value | SortOrder | No |
| order | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| order | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| fieldId | SortOrder | No |
| label | SortOrder | No |
| value | SortOrder | No |
| order | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| fieldId | SortOrder | No |
| label | SortOrder | No |
| value | SortOrder | No |
| order | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| order | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| templateId | String | No |
| roleId | String | No |
| Name | Type | Nullable |
|---|---|---|
| templateId | SortOrder | No |
| roleId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| templateId | SortOrder | No |
| roleId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| templateId | SortOrder | No |
| roleId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| name | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| name | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| name | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | ApprovalWorkflowWhereInput | No |
| isNot | ApprovalWorkflowWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| workflowId | String | No |
| stepNumber | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| workflowId | SortOrder | No |
| stepNumber | SortOrder | No |
| approverRoleId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| stepNumber | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| workflowId | SortOrder | No |
| stepNumber | SortOrder | No |
| approverRoleId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| workflowId | SortOrder | No |
| stepNumber | SortOrder | No |
| approverRoleId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| stepNumber | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | RequisitionStatus | EnumRequisitionStatusFieldRefInput | No |
| in | RequisitionStatus[] | ListEnumRequisitionStatusFieldRefInput | No |
| notIn | RequisitionStatus[] | ListEnumRequisitionStatusFieldRefInput | No |
| not | RequisitionStatus | NestedEnumRequisitionStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| initiatorId | SortOrder | No |
| businessUnitId | SortOrder | No |
| templateId | SortOrder | No |
| overallStatus | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| initiatorId | SortOrder | No |
| businessUnitId | SortOrder | No |
| templateId | SortOrder | No |
| overallStatus | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| initiatorId | SortOrder | No |
| businessUnitId | SortOrder | No |
| templateId | SortOrder | No |
| overallStatus | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | RequisitionStatus | EnumRequisitionStatusFieldRefInput | No |
| in | RequisitionStatus[] | ListEnumRequisitionStatusFieldRefInput | No |
| notIn | RequisitionStatus[] | ListEnumRequisitionStatusFieldRefInput | No |
| not | RequisitionStatus | NestedEnumRequisitionStatusWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumRequisitionStatusFilter | No |
| _max | NestedEnumRequisitionStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ApprovalStatus | EnumApprovalStatusFieldRefInput | No |
| in | ApprovalStatus[] | ListEnumApprovalStatusFieldRefInput | No |
| notIn | ApprovalStatus[] | ListEnumApprovalStatusFieldRefInput | No |
| not | ApprovalStatus | NestedEnumApprovalStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | RequisitionWhereInput | No |
| isNot | RequisitionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | ApprovalStepDefinitionWhereInput | No |
| isNot | ApprovalStepDefinitionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | UserWhereInput | Null | Yes |
| isNot | UserWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| requisitionId | SortOrder | No |
| stepDefinitionId | SortOrder | No |
| approverId | SortOrder | No |
| status | SortOrder | No |
| actionedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| requisitionId | SortOrder | No |
| stepDefinitionId | SortOrder | No |
| approverId | SortOrder | No |
| status | SortOrder | No |
| actionedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| requisitionId | SortOrder | No |
| stepDefinitionId | SortOrder | No |
| approverId | SortOrder | No |
| status | SortOrder | No |
| actionedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ApprovalStatus | EnumApprovalStatusFieldRefInput | No |
| in | ApprovalStatus[] | ListEnumApprovalStatusFieldRefInput | No |
| notIn | ApprovalStatus[] | ListEnumApprovalStatusFieldRefInput | No |
| not | ApprovalStatus | NestedEnumApprovalStatusWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumApprovalStatusFilter | No |
| _max | NestedEnumApprovalStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | Null | Yes |
| in | Int | ListIntFieldRefInput | Null | Yes |
| notIn | Int | ListIntFieldRefInput | Null | Yes |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| requisitionId | String | No |
| templateFieldId | String | No |
| rowIndex | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| requisitionId | SortOrder | No |
| templateFieldId | SortOrder | No |
| value | SortOrder | No |
| rowIndex | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| rowIndex | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| requisitionId | SortOrder | No |
| templateFieldId | SortOrder | No |
| value | SortOrder | No |
| rowIndex | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| requisitionId | SortOrder | No |
| templateFieldId | SortOrder | No |
| value | SortOrder | No |
| rowIndex | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| rowIndex | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | Null | Yes |
| in | Int | ListIntFieldRefInput | Null | Yes |
| notIn | Int | ListIntFieldRefInput | Null | Yes |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedFloatNullableFilter | No |
| _sum | NestedIntNullableFilter | No |
| _min | NestedIntNullableFilter | No |
| _max | NestedIntNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | RequisitionWhereInput | Null | Yes |
| isNot | RequisitionWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | CommentWhereInput | Null | Yes |
| isNot | CommentWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | ChatMessageWhereInput | Null | Yes |
| isNot | ChatMessageWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| url | SortOrder | No |
| filename | SortOrder | No |
| filetype | SortOrder | No |
| size | SortOrder | No |
| uploaderId | SortOrder | No |
| requisitionId | SortOrder | No |
| commentId | SortOrder | No |
| chatMessageId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| size | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| url | SortOrder | No |
| filename | SortOrder | No |
| filetype | SortOrder | No |
| size | SortOrder | No |
| uploaderId | SortOrder | No |
| requisitionId | SortOrder | No |
| commentId | SortOrder | No |
| chatMessageId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| url | SortOrder | No |
| filename | SortOrder | No |
| filetype | SortOrder | No |
| size | SortOrder | No |
| uploaderId | SortOrder | No |
| requisitionId | SortOrder | No |
| commentId | SortOrder | No |
| chatMessageId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| size | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ActionType | EnumActionTypeFieldRefInput | No |
| in | ActionType[] | ListEnumActionTypeFieldRefInput | No |
| notIn | ActionType[] | ListEnumActionTypeFieldRefInput | No |
| not | ActionType | NestedEnumActionTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| content | SortOrder | No |
| action | SortOrder | No |
| authorId | SortOrder | No |
| requisitionId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| content | SortOrder | No |
| action | SortOrder | No |
| authorId | SortOrder | No |
| requisitionId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| content | SortOrder | No |
| action | SortOrder | No |
| authorId | SortOrder | No |
| requisitionId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ActionType | EnumActionTypeFieldRefInput | No |
| in | ActionType[] | ListEnumActionTypeFieldRefInput | No |
| notIn | ActionType[] | ListEnumActionTypeFieldRefInput | No |
| not | ActionType | NestedEnumActionTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumActionTypeFilter | No |
| _max | NestedEnumActionTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| message | SortOrder | No |
| isRead | SortOrder | No |
| recipientId | SortOrder | No |
| requisitionId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| message | SortOrder | No |
| isRead | SortOrder | No |
| recipientId | SortOrder | No |
| requisitionId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| message | SortOrder | No |
| isRead | SortOrder | No |
| recipientId | SortOrder | No |
| requisitionId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| label | SortOrder | No |
| color | SortOrder | No |
| creatorId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| label | SortOrder | No |
| color | SortOrder | No |
| creatorId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| label | SortOrder | No |
| color | SortOrder | No |
| creatorId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | TagWhereInput | No |
| isNot | TagWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| requisitionId | String | No |
| tagId | String | No |
| Name | Type | Nullable |
|---|---|---|
| requisitionId | SortOrder | No |
| tagId | SortOrder | No |
| assignedById | SortOrder | No |
| assignedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| requisitionId | SortOrder | No |
| tagId | SortOrder | No |
| assignedById | SortOrder | No |
| assignedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| requisitionId | SortOrder | No |
| tagId | SortOrder | No |
| assignedById | SortOrder | No |
| assignedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ChatType | EnumChatTypeFieldRefInput | No |
| in | ChatType[] | ListEnumChatTypeFieldRefInput | No |
| notIn | ChatType[] | ListEnumChatTypeFieldRefInput | No |
| not | ChatType | NestedEnumChatTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| chatType | SortOrder | No |
| groupName | SortOrder | No |
| groupImageUrl | SortOrder | No |
| creatorId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| chatType | SortOrder | No |
| groupName | SortOrder | No |
| groupImageUrl | SortOrder | No |
| creatorId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| chatType | SortOrder | No |
| groupName | SortOrder | No |
| groupImageUrl | SortOrder | No |
| creatorId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ChatType | EnumChatTypeFieldRefInput | No |
| in | ChatType[] | ListEnumChatTypeFieldRefInput | No |
| notIn | ChatType[] | ListEnumChatTypeFieldRefInput | No |
| not | ChatType | NestedEnumChatTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumChatTypeFilter | No |
| _max | NestedEnumChatTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | ChatWhereInput | No |
| isNot | ChatWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| chatId | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| chatId | SortOrder | No |
| userId | SortOrder | No |
| lastReadAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| chatId | SortOrder | No |
| userId | SortOrder | No |
| lastReadAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| chatId | SortOrder | No |
| userId | SortOrder | No |
| lastReadAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| content | SortOrder | No |
| senderId | SortOrder | No |
| chatId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| content | SortOrder | No |
| senderId | SortOrder | No |
| chatId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| content | SortOrder | No |
| senderId | SortOrder | No |
| chatId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| create | SessionCreateWithoutUserInput | SessionCreateWithoutUserInput[] | SessionUncheckedCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | SessionCreateOrConnectWithoutUserInput | SessionCreateOrConnectWithoutUserInput[] | No |
| createMany | SessionCreateManyUserInputEnvelope | No |
| connect | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | AccountCreateWithoutUserInput | AccountCreateWithoutUserInput[] | AccountUncheckedCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | AccountCreateOrConnectWithoutUserInput | AccountCreateOrConnectWithoutUserInput[] | No |
| createMany | AccountCreateManyUserInputEnvelope | No |
| connect | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BusinessUnitCreateWithoutHeadInput | BusinessUnitUncheckedCreateWithoutHeadInput | No |
| connectOrCreate | BusinessUnitCreateOrConnectWithoutHeadInput | No |
| connect | BusinessUnitWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutAuthorInput | CommentCreateWithoutAuthorInput[] | CommentUncheckedCreateWithoutAuthorInput | CommentUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | CommentCreateOrConnectWithoutAuthorInput | CommentCreateOrConnectWithoutAuthorInput[] | No |
| createMany | CommentCreateManyAuthorInputEnvelope | No |
| connect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | AttachmentCreateWithoutUploaderInput | AttachmentCreateWithoutUploaderInput[] | AttachmentUncheckedCreateWithoutUploaderInput | AttachmentUncheckedCreateWithoutUploaderInput[] | No |
| connectOrCreate | AttachmentCreateOrConnectWithoutUploaderInput | AttachmentCreateOrConnectWithoutUploaderInput[] | No |
| createMany | AttachmentCreateManyUploaderInputEnvelope | No |
| connect | AttachmentWhereUniqueInput | AttachmentWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TagCreateWithoutCreatorInput | TagCreateWithoutCreatorInput[] | TagUncheckedCreateWithoutCreatorInput | TagUncheckedCreateWithoutCreatorInput[] | No |
| connectOrCreate | TagCreateOrConnectWithoutCreatorInput | TagCreateOrConnectWithoutCreatorInput[] | No |
| createMany | TagCreateManyCreatorInputEnvelope | No |
| connect | TagWhereUniqueInput | TagWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChatMessageCreateWithoutSenderInput | ChatMessageCreateWithoutSenderInput[] | ChatMessageUncheckedCreateWithoutSenderInput | ChatMessageUncheckedCreateWithoutSenderInput[] | No |
| connectOrCreate | ChatMessageCreateOrConnectWithoutSenderInput | ChatMessageCreateOrConnectWithoutSenderInput[] | No |
| createMany | ChatMessageCreateManySenderInputEnvelope | No |
| connect | ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChatCreateWithoutCreatorInput | ChatCreateWithoutCreatorInput[] | ChatUncheckedCreateWithoutCreatorInput | ChatUncheckedCreateWithoutCreatorInput[] | No |
| connectOrCreate | ChatCreateOrConnectWithoutCreatorInput | ChatCreateOrConnectWithoutCreatorInput[] | No |
| createMany | ChatCreateManyCreatorInputEnvelope | No |
| connect | ChatWhereUniqueInput | ChatWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SessionCreateWithoutUserInput | SessionCreateWithoutUserInput[] | SessionUncheckedCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | SessionCreateOrConnectWithoutUserInput | SessionCreateOrConnectWithoutUserInput[] | No |
| createMany | SessionCreateManyUserInputEnvelope | No |
| connect | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | AccountCreateWithoutUserInput | AccountCreateWithoutUserInput[] | AccountUncheckedCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | AccountCreateOrConnectWithoutUserInput | AccountCreateOrConnectWithoutUserInput[] | No |
| createMany | AccountCreateManyUserInputEnvelope | No |
| connect | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BusinessUnitCreateWithoutHeadInput | BusinessUnitUncheckedCreateWithoutHeadInput | No |
| connectOrCreate | BusinessUnitCreateOrConnectWithoutHeadInput | No |
| connect | BusinessUnitWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutAuthorInput | CommentCreateWithoutAuthorInput[] | CommentUncheckedCreateWithoutAuthorInput | CommentUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | CommentCreateOrConnectWithoutAuthorInput | CommentCreateOrConnectWithoutAuthorInput[] | No |
| createMany | CommentCreateManyAuthorInputEnvelope | No |
| connect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | AttachmentCreateWithoutUploaderInput | AttachmentCreateWithoutUploaderInput[] | AttachmentUncheckedCreateWithoutUploaderInput | AttachmentUncheckedCreateWithoutUploaderInput[] | No |
| connectOrCreate | AttachmentCreateOrConnectWithoutUploaderInput | AttachmentCreateOrConnectWithoutUploaderInput[] | No |
| createMany | AttachmentCreateManyUploaderInputEnvelope | No |
| connect | AttachmentWhereUniqueInput | AttachmentWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TagCreateWithoutCreatorInput | TagCreateWithoutCreatorInput[] | TagUncheckedCreateWithoutCreatorInput | TagUncheckedCreateWithoutCreatorInput[] | No |
| connectOrCreate | TagCreateOrConnectWithoutCreatorInput | TagCreateOrConnectWithoutCreatorInput[] | No |
| createMany | TagCreateManyCreatorInputEnvelope | No |
| connect | TagWhereUniqueInput | TagWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChatMessageCreateWithoutSenderInput | ChatMessageCreateWithoutSenderInput[] | ChatMessageUncheckedCreateWithoutSenderInput | ChatMessageUncheckedCreateWithoutSenderInput[] | No |
| connectOrCreate | ChatMessageCreateOrConnectWithoutSenderInput | ChatMessageCreateOrConnectWithoutSenderInput[] | No |
| createMany | ChatMessageCreateManySenderInputEnvelope | No |
| connect | ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChatCreateWithoutCreatorInput | ChatCreateWithoutCreatorInput[] | ChatUncheckedCreateWithoutCreatorInput | ChatUncheckedCreateWithoutCreatorInput[] | No |
| connectOrCreate | ChatCreateOrConnectWithoutCreatorInput | ChatCreateOrConnectWithoutCreatorInput[] | No |
| createMany | ChatCreateManyCreatorInputEnvelope | No |
| connect | ChatWhereUniqueInput | ChatWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| Name | Type | Nullable |
|---|---|---|
| set | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| set | Boolean | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| set | UserStatus | No |
| Name | Type | Nullable |
|---|---|---|
| create | SessionCreateWithoutUserInput | SessionCreateWithoutUserInput[] | SessionUncheckedCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | SessionCreateOrConnectWithoutUserInput | SessionCreateOrConnectWithoutUserInput[] | No |
| upsert | SessionUpsertWithWhereUniqueWithoutUserInput | SessionUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | SessionCreateManyUserInputEnvelope | No |
| set | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| disconnect | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| delete | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| connect | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| update | SessionUpdateWithWhereUniqueWithoutUserInput | SessionUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | SessionUpdateManyWithWhereWithoutUserInput | SessionUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | SessionScalarWhereInput | SessionScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | AccountCreateWithoutUserInput | AccountCreateWithoutUserInput[] | AccountUncheckedCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | AccountCreateOrConnectWithoutUserInput | AccountCreateOrConnectWithoutUserInput[] | No |
| upsert | AccountUpsertWithWhereUniqueWithoutUserInput | AccountUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | AccountCreateManyUserInputEnvelope | No |
| set | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| disconnect | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| delete | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| connect | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| update | AccountUpdateWithWhereUniqueWithoutUserInput | AccountUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | AccountUpdateManyWithWhereWithoutUserInput | AccountUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | AccountScalarWhereInput | AccountScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BusinessUnitCreateWithoutHeadInput | BusinessUnitUncheckedCreateWithoutHeadInput | No |
| connectOrCreate | BusinessUnitCreateOrConnectWithoutHeadInput | No |
| upsert | BusinessUnitUpsertWithoutHeadInput | No |
| disconnect | Boolean | BusinessUnitWhereInput | No |
| delete | Boolean | BusinessUnitWhereInput | No |
| connect | BusinessUnitWhereUniqueInput | No |
| update | BusinessUnitUpdateToOneWithWhereWithoutHeadInput | BusinessUnitUpdateWithoutHeadInput | BusinessUnitUncheckedUpdateWithoutHeadInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutAuthorInput | CommentCreateWithoutAuthorInput[] | CommentUncheckedCreateWithoutAuthorInput | CommentUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | CommentCreateOrConnectWithoutAuthorInput | CommentCreateOrConnectWithoutAuthorInput[] | No |
| upsert | CommentUpsertWithWhereUniqueWithoutAuthorInput | CommentUpsertWithWhereUniqueWithoutAuthorInput[] | No |
| createMany | CommentCreateManyAuthorInputEnvelope | No |
| set | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| disconnect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| delete | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| connect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| update | CommentUpdateWithWhereUniqueWithoutAuthorInput | CommentUpdateWithWhereUniqueWithoutAuthorInput[] | No |
| updateMany | CommentUpdateManyWithWhereWithoutAuthorInput | CommentUpdateManyWithWhereWithoutAuthorInput[] | No |
| deleteMany | CommentScalarWhereInput | CommentScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TagCreateWithoutCreatorInput | TagCreateWithoutCreatorInput[] | TagUncheckedCreateWithoutCreatorInput | TagUncheckedCreateWithoutCreatorInput[] | No |
| connectOrCreate | TagCreateOrConnectWithoutCreatorInput | TagCreateOrConnectWithoutCreatorInput[] | No |
| upsert | TagUpsertWithWhereUniqueWithoutCreatorInput | TagUpsertWithWhereUniqueWithoutCreatorInput[] | No |
| createMany | TagCreateManyCreatorInputEnvelope | No |
| set | TagWhereUniqueInput | TagWhereUniqueInput[] | No |
| disconnect | TagWhereUniqueInput | TagWhereUniqueInput[] | No |
| delete | TagWhereUniqueInput | TagWhereUniqueInput[] | No |
| connect | TagWhereUniqueInput | TagWhereUniqueInput[] | No |
| update | TagUpdateWithWhereUniqueWithoutCreatorInput | TagUpdateWithWhereUniqueWithoutCreatorInput[] | No |
| updateMany | TagUpdateManyWithWhereWithoutCreatorInput | TagUpdateManyWithWhereWithoutCreatorInput[] | No |
| deleteMany | TagScalarWhereInput | TagScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChatCreateWithoutCreatorInput | ChatCreateWithoutCreatorInput[] | ChatUncheckedCreateWithoutCreatorInput | ChatUncheckedCreateWithoutCreatorInput[] | No |
| connectOrCreate | ChatCreateOrConnectWithoutCreatorInput | ChatCreateOrConnectWithoutCreatorInput[] | No |
| upsert | ChatUpsertWithWhereUniqueWithoutCreatorInput | ChatUpsertWithWhereUniqueWithoutCreatorInput[] | No |
| createMany | ChatCreateManyCreatorInputEnvelope | No |
| set | ChatWhereUniqueInput | ChatWhereUniqueInput[] | No |
| disconnect | ChatWhereUniqueInput | ChatWhereUniqueInput[] | No |
| delete | ChatWhereUniqueInput | ChatWhereUniqueInput[] | No |
| connect | ChatWhereUniqueInput | ChatWhereUniqueInput[] | No |
| update | ChatUpdateWithWhereUniqueWithoutCreatorInput | ChatUpdateWithWhereUniqueWithoutCreatorInput[] | No |
| updateMany | ChatUpdateManyWithWhereWithoutCreatorInput | ChatUpdateManyWithWhereWithoutCreatorInput[] | No |
| deleteMany | ChatScalarWhereInput | ChatScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SessionCreateWithoutUserInput | SessionCreateWithoutUserInput[] | SessionUncheckedCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | SessionCreateOrConnectWithoutUserInput | SessionCreateOrConnectWithoutUserInput[] | No |
| upsert | SessionUpsertWithWhereUniqueWithoutUserInput | SessionUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | SessionCreateManyUserInputEnvelope | No |
| set | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| disconnect | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| delete | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| connect | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| update | SessionUpdateWithWhereUniqueWithoutUserInput | SessionUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | SessionUpdateManyWithWhereWithoutUserInput | SessionUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | SessionScalarWhereInput | SessionScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | AccountCreateWithoutUserInput | AccountCreateWithoutUserInput[] | AccountUncheckedCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | AccountCreateOrConnectWithoutUserInput | AccountCreateOrConnectWithoutUserInput[] | No |
| upsert | AccountUpsertWithWhereUniqueWithoutUserInput | AccountUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | AccountCreateManyUserInputEnvelope | No |
| set | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| disconnect | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| delete | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| connect | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| update | AccountUpdateWithWhereUniqueWithoutUserInput | AccountUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | AccountUpdateManyWithWhereWithoutUserInput | AccountUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | AccountScalarWhereInput | AccountScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BusinessUnitCreateWithoutHeadInput | BusinessUnitUncheckedCreateWithoutHeadInput | No |
| connectOrCreate | BusinessUnitCreateOrConnectWithoutHeadInput | No |
| upsert | BusinessUnitUpsertWithoutHeadInput | No |
| disconnect | Boolean | BusinessUnitWhereInput | No |
| delete | Boolean | BusinessUnitWhereInput | No |
| connect | BusinessUnitWhereUniqueInput | No |
| update | BusinessUnitUpdateToOneWithWhereWithoutHeadInput | BusinessUnitUpdateWithoutHeadInput | BusinessUnitUncheckedUpdateWithoutHeadInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutAuthorInput | CommentCreateWithoutAuthorInput[] | CommentUncheckedCreateWithoutAuthorInput | CommentUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | CommentCreateOrConnectWithoutAuthorInput | CommentCreateOrConnectWithoutAuthorInput[] | No |
| upsert | CommentUpsertWithWhereUniqueWithoutAuthorInput | CommentUpsertWithWhereUniqueWithoutAuthorInput[] | No |
| createMany | CommentCreateManyAuthorInputEnvelope | No |
| set | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| disconnect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| delete | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| connect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| update | CommentUpdateWithWhereUniqueWithoutAuthorInput | CommentUpdateWithWhereUniqueWithoutAuthorInput[] | No |
| updateMany | CommentUpdateManyWithWhereWithoutAuthorInput | CommentUpdateManyWithWhereWithoutAuthorInput[] | No |
| deleteMany | CommentScalarWhereInput | CommentScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TagCreateWithoutCreatorInput | TagCreateWithoutCreatorInput[] | TagUncheckedCreateWithoutCreatorInput | TagUncheckedCreateWithoutCreatorInput[] | No |
| connectOrCreate | TagCreateOrConnectWithoutCreatorInput | TagCreateOrConnectWithoutCreatorInput[] | No |
| upsert | TagUpsertWithWhereUniqueWithoutCreatorInput | TagUpsertWithWhereUniqueWithoutCreatorInput[] | No |
| createMany | TagCreateManyCreatorInputEnvelope | No |
| set | TagWhereUniqueInput | TagWhereUniqueInput[] | No |
| disconnect | TagWhereUniqueInput | TagWhereUniqueInput[] | No |
| delete | TagWhereUniqueInput | TagWhereUniqueInput[] | No |
| connect | TagWhereUniqueInput | TagWhereUniqueInput[] | No |
| update | TagUpdateWithWhereUniqueWithoutCreatorInput | TagUpdateWithWhereUniqueWithoutCreatorInput[] | No |
| updateMany | TagUpdateManyWithWhereWithoutCreatorInput | TagUpdateManyWithWhereWithoutCreatorInput[] | No |
| deleteMany | TagScalarWhereInput | TagScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChatCreateWithoutCreatorInput | ChatCreateWithoutCreatorInput[] | ChatUncheckedCreateWithoutCreatorInput | ChatUncheckedCreateWithoutCreatorInput[] | No |
| connectOrCreate | ChatCreateOrConnectWithoutCreatorInput | ChatCreateOrConnectWithoutCreatorInput[] | No |
| upsert | ChatUpsertWithWhereUniqueWithoutCreatorInput | ChatUpsertWithWhereUniqueWithoutCreatorInput[] | No |
| createMany | ChatCreateManyCreatorInputEnvelope | No |
| set | ChatWhereUniqueInput | ChatWhereUniqueInput[] | No |
| disconnect | ChatWhereUniqueInput | ChatWhereUniqueInput[] | No |
| delete | ChatWhereUniqueInput | ChatWhereUniqueInput[] | No |
| connect | ChatWhereUniqueInput | ChatWhereUniqueInput[] | No |
| update | ChatUpdateWithWhereUniqueWithoutCreatorInput | ChatUpdateWithWhereUniqueWithoutCreatorInput[] | No |
| updateMany | ChatUpdateManyWithWhereWithoutCreatorInput | ChatUpdateManyWithWhereWithoutCreatorInput[] | No |
| deleteMany | ChatScalarWhereInput | ChatScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutSessionsInput | UserUncheckedCreateWithoutSessionsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutSessionsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutSessionsInput | UserUncheckedCreateWithoutSessionsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutSessionsInput | No |
| upsert | UserUpsertWithoutSessionsInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutSessionsInput | UserUpdateWithoutSessionsInput | UserUncheckedUpdateWithoutSessionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutAccountsInput | UserUncheckedCreateWithoutAccountsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutAccountsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutAccountsInput | UserUncheckedCreateWithoutAccountsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutAccountsInput | No |
| upsert | UserUpsertWithoutAccountsInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutAccountsInput | UserUpdateWithoutAccountsInput | UserUncheckedUpdateWithoutAccountsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutHeadedBusinessUnitInput | UserUncheckedCreateWithoutHeadedBusinessUnitInput | No |
| connectOrCreate | UserCreateOrConnectWithoutHeadedBusinessUnitInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RoleCreateWithoutBusinessUnitInput | RoleCreateWithoutBusinessUnitInput[] | RoleUncheckedCreateWithoutBusinessUnitInput | RoleUncheckedCreateWithoutBusinessUnitInput[] | No |
| connectOrCreate | RoleCreateOrConnectWithoutBusinessUnitInput | RoleCreateOrConnectWithoutBusinessUnitInput[] | No |
| createMany | RoleCreateManyBusinessUnitInputEnvelope | No |
| connect | RoleWhereUniqueInput | RoleWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RequisitionCreateWithoutFromBUInput | RequisitionCreateWithoutFromBUInput[] | RequisitionUncheckedCreateWithoutFromBUInput | RequisitionUncheckedCreateWithoutFromBUInput[] | No |
| connectOrCreate | RequisitionCreateOrConnectWithoutFromBUInput | RequisitionCreateOrConnectWithoutFromBUInput[] | No |
| createMany | RequisitionCreateManyFromBUInputEnvelope | No |
| connect | RequisitionWhereUniqueInput | RequisitionWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RoleCreateWithoutBusinessUnitInput | RoleCreateWithoutBusinessUnitInput[] | RoleUncheckedCreateWithoutBusinessUnitInput | RoleUncheckedCreateWithoutBusinessUnitInput[] | No |
| connectOrCreate | RoleCreateOrConnectWithoutBusinessUnitInput | RoleCreateOrConnectWithoutBusinessUnitInput[] | No |
| createMany | RoleCreateManyBusinessUnitInputEnvelope | No |
| connect | RoleWhereUniqueInput | RoleWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RequisitionCreateWithoutFromBUInput | RequisitionCreateWithoutFromBUInput[] | RequisitionUncheckedCreateWithoutFromBUInput | RequisitionUncheckedCreateWithoutFromBUInput[] | No |
| connectOrCreate | RequisitionCreateOrConnectWithoutFromBUInput | RequisitionCreateOrConnectWithoutFromBUInput[] | No |
| createMany | RequisitionCreateManyFromBUInputEnvelope | No |
| connect | RequisitionWhereUniqueInput | RequisitionWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutHeadedBusinessUnitInput | UserUncheckedCreateWithoutHeadedBusinessUnitInput | No |
| connectOrCreate | UserCreateOrConnectWithoutHeadedBusinessUnitInput | No |
| upsert | UserUpsertWithoutHeadedBusinessUnitInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutHeadedBusinessUnitInput | UserUpdateWithoutHeadedBusinessUnitInput | UserUncheckedUpdateWithoutHeadedBusinessUnitInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RoleCreateWithoutBusinessUnitInput | RoleCreateWithoutBusinessUnitInput[] | RoleUncheckedCreateWithoutBusinessUnitInput | RoleUncheckedCreateWithoutBusinessUnitInput[] | No |
| connectOrCreate | RoleCreateOrConnectWithoutBusinessUnitInput | RoleCreateOrConnectWithoutBusinessUnitInput[] | No |
| upsert | RoleUpsertWithWhereUniqueWithoutBusinessUnitInput | RoleUpsertWithWhereUniqueWithoutBusinessUnitInput[] | No |
| createMany | RoleCreateManyBusinessUnitInputEnvelope | No |
| set | RoleWhereUniqueInput | RoleWhereUniqueInput[] | No |
| disconnect | RoleWhereUniqueInput | RoleWhereUniqueInput[] | No |
| delete | RoleWhereUniqueInput | RoleWhereUniqueInput[] | No |
| connect | RoleWhereUniqueInput | RoleWhereUniqueInput[] | No |
| update | RoleUpdateWithWhereUniqueWithoutBusinessUnitInput | RoleUpdateWithWhereUniqueWithoutBusinessUnitInput[] | No |
| updateMany | RoleUpdateManyWithWhereWithoutBusinessUnitInput | RoleUpdateManyWithWhereWithoutBusinessUnitInput[] | No |
| deleteMany | RoleScalarWhereInput | RoleScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RoleCreateWithoutBusinessUnitInput | RoleCreateWithoutBusinessUnitInput[] | RoleUncheckedCreateWithoutBusinessUnitInput | RoleUncheckedCreateWithoutBusinessUnitInput[] | No |
| connectOrCreate | RoleCreateOrConnectWithoutBusinessUnitInput | RoleCreateOrConnectWithoutBusinessUnitInput[] | No |
| upsert | RoleUpsertWithWhereUniqueWithoutBusinessUnitInput | RoleUpsertWithWhereUniqueWithoutBusinessUnitInput[] | No |
| createMany | RoleCreateManyBusinessUnitInputEnvelope | No |
| set | RoleWhereUniqueInput | RoleWhereUniqueInput[] | No |
| disconnect | RoleWhereUniqueInput | RoleWhereUniqueInput[] | No |
| delete | RoleWhereUniqueInput | RoleWhereUniqueInput[] | No |
| connect | RoleWhereUniqueInput | RoleWhereUniqueInput[] | No |
| update | RoleUpdateWithWhereUniqueWithoutBusinessUnitInput | RoleUpdateWithWhereUniqueWithoutBusinessUnitInput[] | No |
| updateMany | RoleUpdateManyWithWhereWithoutBusinessUnitInput | RoleUpdateManyWithWhereWithoutBusinessUnitInput[] | No |
| deleteMany | RoleScalarWhereInput | RoleScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutBusinessUnitsInput | UserUncheckedCreateWithoutBusinessUnitsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutBusinessUnitsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BusinessUnitCreateWithoutMembersInput | BusinessUnitUncheckedCreateWithoutMembersInput | No |
| connectOrCreate | BusinessUnitCreateOrConnectWithoutMembersInput | No |
| connect | BusinessUnitWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | BUMembershipType | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutBusinessUnitsInput | UserUncheckedCreateWithoutBusinessUnitsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutBusinessUnitsInput | No |
| upsert | UserUpsertWithoutBusinessUnitsInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutBusinessUnitsInput | UserUpdateWithoutBusinessUnitsInput | UserUncheckedUpdateWithoutBusinessUnitsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BusinessUnitCreateWithoutMembersInput | BusinessUnitUncheckedCreateWithoutMembersInput | No |
| connectOrCreate | BusinessUnitCreateOrConnectWithoutMembersInput | No |
| upsert | BusinessUnitUpsertWithoutMembersInput | No |
| connect | BusinessUnitWhereUniqueInput | No |
| update | BusinessUnitUpdateToOneWithWhereWithoutMembersInput | BusinessUnitUpdateWithoutMembersInput | BusinessUnitUncheckedUpdateWithoutMembersInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BusinessUnitCreateWithoutRolesInput | BusinessUnitUncheckedCreateWithoutRolesInput | No |
| connectOrCreate | BusinessUnitCreateOrConnectWithoutRolesInput | No |
| connect | BusinessUnitWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | RoleScope | No |
| Name | Type | Nullable |
|---|---|---|
| set | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| create | BusinessUnitCreateWithoutRolesInput | BusinessUnitUncheckedCreateWithoutRolesInput | No |
| connectOrCreate | BusinessUnitCreateOrConnectWithoutRolesInput | No |
| upsert | BusinessUnitUpsertWithoutRolesInput | No |
| disconnect | Boolean | BusinessUnitWhereInput | No |
| delete | Boolean | BusinessUnitWhereInput | No |
| connect | BusinessUnitWhereUniqueInput | No |
| update | BusinessUnitUpdateToOneWithWhereWithoutRolesInput | BusinessUnitUpdateWithoutRolesInput | BusinessUnitUncheckedUpdateWithoutRolesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutRoleAssignmentsInput | UserUncheckedCreateWithoutRoleAssignmentsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutRoleAssignmentsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RoleCreateWithoutUserAssignmentsInput | RoleUncheckedCreateWithoutUserAssignmentsInput | No |
| connectOrCreate | RoleCreateOrConnectWithoutUserAssignmentsInput | No |
| connect | RoleWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutRoleAssignmentsInput | UserUncheckedCreateWithoutRoleAssignmentsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutRoleAssignmentsInput | No |
| upsert | UserUpsertWithoutRoleAssignmentsInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutRoleAssignmentsInput | UserUpdateWithoutRoleAssignmentsInput | UserUncheckedUpdateWithoutRoleAssignmentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RoleCreateWithoutUserAssignmentsInput | RoleUncheckedCreateWithoutUserAssignmentsInput | No |
| connectOrCreate | RoleCreateOrConnectWithoutUserAssignmentsInput | No |
| upsert | RoleUpsertWithoutUserAssignmentsInput | No |
| connect | RoleWhereUniqueInput | No |
| update | RoleUpdateToOneWithWhereWithoutUserAssignmentsInput | RoleUpdateWithoutUserAssignmentsInput | RoleUncheckedUpdateWithoutUserAssignmentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BusinessUnitCreateWithoutRequisitionTemplatesInput | BusinessUnitUncheckedCreateWithoutRequisitionTemplatesInput | No |
| connectOrCreate | BusinessUnitCreateOrConnectWithoutRequisitionTemplatesInput | No |
| connect | BusinessUnitWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ApprovalWorkflowCreateWithoutTemplatesInput | ApprovalWorkflowUncheckedCreateWithoutTemplatesInput | No |
| connectOrCreate | ApprovalWorkflowCreateOrConnectWithoutTemplatesInput | No |
| connect | ApprovalWorkflowWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RequisitionCreateWithoutTemplateInput | RequisitionCreateWithoutTemplateInput[] | RequisitionUncheckedCreateWithoutTemplateInput | RequisitionUncheckedCreateWithoutTemplateInput[] | No |
| connectOrCreate | RequisitionCreateOrConnectWithoutTemplateInput | RequisitionCreateOrConnectWithoutTemplateInput[] | No |
| createMany | RequisitionCreateManyTemplateInputEnvelope | No |
| connect | RequisitionWhereUniqueInput | RequisitionWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RequisitionCreateWithoutTemplateInput | RequisitionCreateWithoutTemplateInput[] | RequisitionUncheckedCreateWithoutTemplateInput | RequisitionUncheckedCreateWithoutTemplateInput[] | No |
| connectOrCreate | RequisitionCreateOrConnectWithoutTemplateInput | RequisitionCreateOrConnectWithoutTemplateInput[] | No |
| createMany | RequisitionCreateManyTemplateInputEnvelope | No |
| connect | RequisitionWhereUniqueInput | RequisitionWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ApprovalWorkflowCreateWithoutTemplatesInput | ApprovalWorkflowUncheckedCreateWithoutTemplatesInput | No |
| connectOrCreate | ApprovalWorkflowCreateOrConnectWithoutTemplatesInput | No |
| upsert | ApprovalWorkflowUpsertWithoutTemplatesInput | No |
| disconnect | Boolean | ApprovalWorkflowWhereInput | No |
| delete | Boolean | ApprovalWorkflowWhereInput | No |
| connect | ApprovalWorkflowWhereUniqueInput | No |
| update | ApprovalWorkflowUpdateToOneWithWhereWithoutTemplatesInput | ApprovalWorkflowUpdateWithoutTemplatesInput | ApprovalWorkflowUncheckedUpdateWithoutTemplatesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RequisitionTemplateCreateWithoutFieldsInput | RequisitionTemplateUncheckedCreateWithoutFieldsInput | No |
| connectOrCreate | RequisitionTemplateCreateOrConnectWithoutFieldsInput | No |
| connect | RequisitionTemplateWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | FieldOptionCreateWithoutFieldInput | FieldOptionCreateWithoutFieldInput[] | FieldOptionUncheckedCreateWithoutFieldInput | FieldOptionUncheckedCreateWithoutFieldInput[] | No |
| connectOrCreate | FieldOptionCreateOrConnectWithoutFieldInput | FieldOptionCreateOrConnectWithoutFieldInput[] | No |
| createMany | FieldOptionCreateManyFieldInputEnvelope | No |
| connect | FieldOptionWhereUniqueInput | FieldOptionWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TemplateFieldCreateWithoutListColumnsInput | TemplateFieldUncheckedCreateWithoutListColumnsInput | No |
| connectOrCreate | TemplateFieldCreateOrConnectWithoutListColumnsInput | No |
| connect | TemplateFieldWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | FieldOptionCreateWithoutFieldInput | FieldOptionCreateWithoutFieldInput[] | FieldOptionUncheckedCreateWithoutFieldInput | FieldOptionUncheckedCreateWithoutFieldInput[] | No |
| connectOrCreate | FieldOptionCreateOrConnectWithoutFieldInput | FieldOptionCreateOrConnectWithoutFieldInput[] | No |
| createMany | FieldOptionCreateManyFieldInputEnvelope | No |
| connect | FieldOptionWhereUniqueInput | FieldOptionWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | FieldType | No |
| Name | Type | Nullable |
|---|---|---|
| set | Int | No |
| increment | Int | No |
| decrement | Int | No |
| multiply | Int | No |
| divide | Int | No |
| Name | Type | Nullable |
|---|---|---|
| create | TemplateFieldCreateWithoutListColumnsInput | TemplateFieldUncheckedCreateWithoutListColumnsInput | No |
| connectOrCreate | TemplateFieldCreateOrConnectWithoutListColumnsInput | No |
| upsert | TemplateFieldUpsertWithoutListColumnsInput | No |
| disconnect | Boolean | TemplateFieldWhereInput | No |
| delete | Boolean | TemplateFieldWhereInput | No |
| connect | TemplateFieldWhereUniqueInput | No |
| update | TemplateFieldUpdateToOneWithWhereWithoutListColumnsInput | TemplateFieldUpdateWithoutListColumnsInput | TemplateFieldUncheckedUpdateWithoutListColumnsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TemplateFieldCreateWithoutOptionsInput | TemplateFieldUncheckedCreateWithoutOptionsInput | No |
| connectOrCreate | TemplateFieldCreateOrConnectWithoutOptionsInput | No |
| connect | TemplateFieldWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TemplateFieldCreateWithoutOptionsInput | TemplateFieldUncheckedCreateWithoutOptionsInput | No |
| connectOrCreate | TemplateFieldCreateOrConnectWithoutOptionsInput | No |
| upsert | TemplateFieldUpsertWithoutOptionsInput | No |
| connect | TemplateFieldWhereUniqueInput | No |
| update | TemplateFieldUpdateToOneWithWhereWithoutOptionsInput | TemplateFieldUpdateWithoutOptionsInput | TemplateFieldUncheckedUpdateWithoutOptionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RequisitionTemplateCreateWithoutInitiatorAccessInput | RequisitionTemplateUncheckedCreateWithoutInitiatorAccessInput | No |
| connectOrCreate | RequisitionTemplateCreateOrConnectWithoutInitiatorAccessInput | No |
| connect | RequisitionTemplateWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RoleCreateWithoutAccessibleTemplatesInput | RoleUncheckedCreateWithoutAccessibleTemplatesInput | No |
| connectOrCreate | RoleCreateOrConnectWithoutAccessibleTemplatesInput | No |
| connect | RoleWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RoleCreateWithoutAccessibleTemplatesInput | RoleUncheckedCreateWithoutAccessibleTemplatesInput | No |
| connectOrCreate | RoleCreateOrConnectWithoutAccessibleTemplatesInput | No |
| upsert | RoleUpsertWithoutAccessibleTemplatesInput | No |
| connect | RoleWhereUniqueInput | No |
| update | RoleUpdateToOneWithWhereWithoutAccessibleTemplatesInput | RoleUpdateWithoutAccessibleTemplatesInput | RoleUncheckedUpdateWithoutAccessibleTemplatesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ApprovalWorkflowCreateWithoutStepsInput | ApprovalWorkflowUncheckedCreateWithoutStepsInput | No |
| connectOrCreate | ApprovalWorkflowCreateOrConnectWithoutStepsInput | No |
| connect | ApprovalWorkflowWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RoleCreateWithoutApprovalStepDefinitionsInput | RoleUncheckedCreateWithoutApprovalStepDefinitionsInput | No |
| connectOrCreate | RoleCreateOrConnectWithoutApprovalStepDefinitionsInput | No |
| connect | RoleWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ApprovalWorkflowCreateWithoutStepsInput | ApprovalWorkflowUncheckedCreateWithoutStepsInput | No |
| connectOrCreate | ApprovalWorkflowCreateOrConnectWithoutStepsInput | No |
| upsert | ApprovalWorkflowUpsertWithoutStepsInput | No |
| connect | ApprovalWorkflowWhereUniqueInput | No |
| update | ApprovalWorkflowUpdateToOneWithWhereWithoutStepsInput | ApprovalWorkflowUpdateWithoutStepsInput | ApprovalWorkflowUncheckedUpdateWithoutStepsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutInitiatedRequisitionsInput | UserUncheckedCreateWithoutInitiatedRequisitionsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutInitiatedRequisitionsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BusinessUnitCreateWithoutRequisitionsInput | BusinessUnitUncheckedCreateWithoutRequisitionsInput | No |
| connectOrCreate | BusinessUnitCreateOrConnectWithoutRequisitionsInput | No |
| connect | BusinessUnitWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RequisitionTemplateCreateWithoutRequisitionsInput | RequisitionTemplateUncheckedCreateWithoutRequisitionsInput | No |
| connectOrCreate | RequisitionTemplateCreateOrConnectWithoutRequisitionsInput | No |
| connect | RequisitionTemplateWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutRequisitionInput | CommentCreateWithoutRequisitionInput[] | CommentUncheckedCreateWithoutRequisitionInput | CommentUncheckedCreateWithoutRequisitionInput[] | No |
| connectOrCreate | CommentCreateOrConnectWithoutRequisitionInput | CommentCreateOrConnectWithoutRequisitionInput[] | No |
| createMany | CommentCreateManyRequisitionInputEnvelope | No |
| connect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutRequisitionInput | CommentCreateWithoutRequisitionInput[] | CommentUncheckedCreateWithoutRequisitionInput | CommentUncheckedCreateWithoutRequisitionInput[] | No |
| connectOrCreate | CommentCreateOrConnectWithoutRequisitionInput | CommentCreateOrConnectWithoutRequisitionInput[] | No |
| createMany | CommentCreateManyRequisitionInputEnvelope | No |
| connect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | RequisitionStatus | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutInitiatedRequisitionsInput | UserUncheckedCreateWithoutInitiatedRequisitionsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutInitiatedRequisitionsInput | No |
| upsert | UserUpsertWithoutInitiatedRequisitionsInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutInitiatedRequisitionsInput | UserUpdateWithoutInitiatedRequisitionsInput | UserUncheckedUpdateWithoutInitiatedRequisitionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BusinessUnitCreateWithoutRequisitionsInput | BusinessUnitUncheckedCreateWithoutRequisitionsInput | No |
| connectOrCreate | BusinessUnitCreateOrConnectWithoutRequisitionsInput | No |
| upsert | BusinessUnitUpsertWithoutRequisitionsInput | No |
| connect | BusinessUnitWhereUniqueInput | No |
| update | BusinessUnitUpdateToOneWithWhereWithoutRequisitionsInput | BusinessUnitUpdateWithoutRequisitionsInput | BusinessUnitUncheckedUpdateWithoutRequisitionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RequisitionCreateWithoutApprovalHistoryInput | RequisitionUncheckedCreateWithoutApprovalHistoryInput | No |
| connectOrCreate | RequisitionCreateOrConnectWithoutApprovalHistoryInput | No |
| connect | RequisitionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ApprovalStepDefinitionCreateWithoutRequisitionApprovalsInput | ApprovalStepDefinitionUncheckedCreateWithoutRequisitionApprovalsInput | No |
| connectOrCreate | ApprovalStepDefinitionCreateOrConnectWithoutRequisitionApprovalsInput | No |
| connect | ApprovalStepDefinitionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutAssignedApprovalsInput | UserUncheckedCreateWithoutAssignedApprovalsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutAssignedApprovalsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | ApprovalStatus | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutAssignedApprovalsInput | UserUncheckedCreateWithoutAssignedApprovalsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutAssignedApprovalsInput | No |
| upsert | UserUpsertWithoutAssignedApprovalsInput | No |
| disconnect | Boolean | UserWhereInput | No |
| delete | Boolean | UserWhereInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutAssignedApprovalsInput | UserUpdateWithoutAssignedApprovalsInput | UserUncheckedUpdateWithoutAssignedApprovalsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RequisitionCreateWithoutSubmittedValuesInput | RequisitionUncheckedCreateWithoutSubmittedValuesInput | No |
| connectOrCreate | RequisitionCreateOrConnectWithoutSubmittedValuesInput | No |
| connect | RequisitionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TemplateFieldCreateWithoutSubmittedValuesInput | TemplateFieldUncheckedCreateWithoutSubmittedValuesInput | No |
| connectOrCreate | TemplateFieldCreateOrConnectWithoutSubmittedValuesInput | No |
| connect | TemplateFieldWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | Int | Null | Yes |
| increment | Int | No |
| decrement | Int | No |
| multiply | Int | No |
| divide | Int | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutUploadedAttachmentsInput | UserUncheckedCreateWithoutUploadedAttachmentsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutUploadedAttachmentsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RequisitionCreateWithoutAttachmentsInput | RequisitionUncheckedCreateWithoutAttachmentsInput | No |
| connectOrCreate | RequisitionCreateOrConnectWithoutAttachmentsInput | No |
| connect | RequisitionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutAttachmentsInput | CommentUncheckedCreateWithoutAttachmentsInput | No |
| connectOrCreate | CommentCreateOrConnectWithoutAttachmentsInput | No |
| connect | CommentWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChatMessageCreateWithoutAttachmentsInput | ChatMessageUncheckedCreateWithoutAttachmentsInput | No |
| connectOrCreate | ChatMessageCreateOrConnectWithoutAttachmentsInput | No |
| connect | ChatMessageWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutUploadedAttachmentsInput | UserUncheckedCreateWithoutUploadedAttachmentsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutUploadedAttachmentsInput | No |
| upsert | UserUpsertWithoutUploadedAttachmentsInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutUploadedAttachmentsInput | UserUpdateWithoutUploadedAttachmentsInput | UserUncheckedUpdateWithoutUploadedAttachmentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RequisitionCreateWithoutAttachmentsInput | RequisitionUncheckedCreateWithoutAttachmentsInput | No |
| connectOrCreate | RequisitionCreateOrConnectWithoutAttachmentsInput | No |
| upsert | RequisitionUpsertWithoutAttachmentsInput | No |
| disconnect | Boolean | RequisitionWhereInput | No |
| delete | Boolean | RequisitionWhereInput | No |
| connect | RequisitionWhereUniqueInput | No |
| update | RequisitionUpdateToOneWithWhereWithoutAttachmentsInput | RequisitionUpdateWithoutAttachmentsInput | RequisitionUncheckedUpdateWithoutAttachmentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutAttachmentsInput | CommentUncheckedCreateWithoutAttachmentsInput | No |
| connectOrCreate | CommentCreateOrConnectWithoutAttachmentsInput | No |
| upsert | CommentUpsertWithoutAttachmentsInput | No |
| disconnect | Boolean | CommentWhereInput | No |
| delete | Boolean | CommentWhereInput | No |
| connect | CommentWhereUniqueInput | No |
| update | CommentUpdateToOneWithWhereWithoutAttachmentsInput | CommentUpdateWithoutAttachmentsInput | CommentUncheckedUpdateWithoutAttachmentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChatMessageCreateWithoutAttachmentsInput | ChatMessageUncheckedCreateWithoutAttachmentsInput | No |
| connectOrCreate | ChatMessageCreateOrConnectWithoutAttachmentsInput | No |
| upsert | ChatMessageUpsertWithoutAttachmentsInput | No |
| disconnect | Boolean | ChatMessageWhereInput | No |
| delete | Boolean | ChatMessageWhereInput | No |
| connect | ChatMessageWhereUniqueInput | No |
| update | ChatMessageUpdateToOneWithWhereWithoutAttachmentsInput | ChatMessageUpdateWithoutAttachmentsInput | ChatMessageUncheckedUpdateWithoutAttachmentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutCommentsInput | UserUncheckedCreateWithoutCommentsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutCommentsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RequisitionCreateWithoutActionLogInput | RequisitionUncheckedCreateWithoutActionLogInput | No |
| connectOrCreate | RequisitionCreateOrConnectWithoutActionLogInput | No |
| connect | RequisitionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | AttachmentCreateWithoutCommentInput | AttachmentCreateWithoutCommentInput[] | AttachmentUncheckedCreateWithoutCommentInput | AttachmentUncheckedCreateWithoutCommentInput[] | No |
| connectOrCreate | AttachmentCreateOrConnectWithoutCommentInput | AttachmentCreateOrConnectWithoutCommentInput[] | No |
| createMany | AttachmentCreateManyCommentInputEnvelope | No |
| connect | AttachmentWhereUniqueInput | AttachmentWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | AttachmentCreateWithoutCommentInput | AttachmentCreateWithoutCommentInput[] | AttachmentUncheckedCreateWithoutCommentInput | AttachmentUncheckedCreateWithoutCommentInput[] | No |
| connectOrCreate | AttachmentCreateOrConnectWithoutCommentInput | AttachmentCreateOrConnectWithoutCommentInput[] | No |
| createMany | AttachmentCreateManyCommentInputEnvelope | No |
| connect | AttachmentWhereUniqueInput | AttachmentWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | ActionType | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutCommentsInput | UserUncheckedCreateWithoutCommentsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutCommentsInput | No |
| upsert | UserUpsertWithoutCommentsInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutCommentsInput | UserUpdateWithoutCommentsInput | UserUncheckedUpdateWithoutCommentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RequisitionCreateWithoutActionLogInput | RequisitionUncheckedCreateWithoutActionLogInput | No |
| connectOrCreate | RequisitionCreateOrConnectWithoutActionLogInput | No |
| upsert | RequisitionUpsertWithoutActionLogInput | No |
| connect | RequisitionWhereUniqueInput | No |
| update | RequisitionUpdateToOneWithWhereWithoutActionLogInput | RequisitionUpdateWithoutActionLogInput | RequisitionUncheckedUpdateWithoutActionLogInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutNotificationsInput | UserUncheckedCreateWithoutNotificationsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutNotificationsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RequisitionCreateWithoutNotificationsInput | RequisitionUncheckedCreateWithoutNotificationsInput | No |
| connectOrCreate | RequisitionCreateOrConnectWithoutNotificationsInput | No |
| connect | RequisitionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutNotificationsInput | UserUncheckedCreateWithoutNotificationsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutNotificationsInput | No |
| upsert | UserUpsertWithoutNotificationsInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutNotificationsInput | UserUpdateWithoutNotificationsInput | UserUncheckedUpdateWithoutNotificationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RequisitionCreateWithoutNotificationsInput | RequisitionUncheckedCreateWithoutNotificationsInput | No |
| connectOrCreate | RequisitionCreateOrConnectWithoutNotificationsInput | No |
| upsert | RequisitionUpsertWithoutNotificationsInput | No |
| disconnect | Boolean | RequisitionWhereInput | No |
| delete | Boolean | RequisitionWhereInput | No |
| connect | RequisitionWhereUniqueInput | No |
| update | RequisitionUpdateToOneWithWhereWithoutNotificationsInput | RequisitionUpdateWithoutNotificationsInput | RequisitionUncheckedUpdateWithoutNotificationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutCreatedTagsInput | UserUncheckedCreateWithoutCreatedTagsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutCreatedTagsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RequisitionTagCreateWithoutTagInput | RequisitionTagCreateWithoutTagInput[] | RequisitionTagUncheckedCreateWithoutTagInput | RequisitionTagUncheckedCreateWithoutTagInput[] | No |
| connectOrCreate | RequisitionTagCreateOrConnectWithoutTagInput | RequisitionTagCreateOrConnectWithoutTagInput[] | No |
| createMany | RequisitionTagCreateManyTagInputEnvelope | No |
| connect | RequisitionTagWhereUniqueInput | RequisitionTagWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RequisitionTagCreateWithoutTagInput | RequisitionTagCreateWithoutTagInput[] | RequisitionTagUncheckedCreateWithoutTagInput | RequisitionTagUncheckedCreateWithoutTagInput[] | No |
| connectOrCreate | RequisitionTagCreateOrConnectWithoutTagInput | RequisitionTagCreateOrConnectWithoutTagInput[] | No |
| createMany | RequisitionTagCreateManyTagInputEnvelope | No |
| connect | RequisitionTagWhereUniqueInput | RequisitionTagWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutCreatedTagsInput | UserUncheckedCreateWithoutCreatedTagsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutCreatedTagsInput | No |
| upsert | UserUpsertWithoutCreatedTagsInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutCreatedTagsInput | UserUpdateWithoutCreatedTagsInput | UserUncheckedUpdateWithoutCreatedTagsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RequisitionCreateWithoutTagsInput | RequisitionUncheckedCreateWithoutTagsInput | No |
| connectOrCreate | RequisitionCreateOrConnectWithoutTagsInput | No |
| connect | RequisitionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TagCreateWithoutRequisitionsInput | TagUncheckedCreateWithoutRequisitionsInput | No |
| connectOrCreate | TagCreateOrConnectWithoutRequisitionsInput | No |
| connect | TagWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutTaggedRequisitionsInput | UserUncheckedCreateWithoutTaggedRequisitionsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutTaggedRequisitionsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RequisitionCreateWithoutTagsInput | RequisitionUncheckedCreateWithoutTagsInput | No |
| connectOrCreate | RequisitionCreateOrConnectWithoutTagsInput | No |
| upsert | RequisitionUpsertWithoutTagsInput | No |
| connect | RequisitionWhereUniqueInput | No |
| update | RequisitionUpdateToOneWithWhereWithoutTagsInput | RequisitionUpdateWithoutTagsInput | RequisitionUncheckedUpdateWithoutTagsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TagCreateWithoutRequisitionsInput | TagUncheckedCreateWithoutRequisitionsInput | No |
| connectOrCreate | TagCreateOrConnectWithoutRequisitionsInput | No |
| upsert | TagUpsertWithoutRequisitionsInput | No |
| connect | TagWhereUniqueInput | No |
| update | TagUpdateToOneWithWhereWithoutRequisitionsInput | TagUpdateWithoutRequisitionsInput | TagUncheckedUpdateWithoutRequisitionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutTaggedRequisitionsInput | UserUncheckedCreateWithoutTaggedRequisitionsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutTaggedRequisitionsInput | No |
| upsert | UserUpsertWithoutTaggedRequisitionsInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutTaggedRequisitionsInput | UserUpdateWithoutTaggedRequisitionsInput | UserUncheckedUpdateWithoutTaggedRequisitionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutCreatedGroupChatsInput | UserUncheckedCreateWithoutCreatedGroupChatsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutCreatedGroupChatsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChatMessageCreateWithoutChatInput | ChatMessageCreateWithoutChatInput[] | ChatMessageUncheckedCreateWithoutChatInput | ChatMessageUncheckedCreateWithoutChatInput[] | No |
| connectOrCreate | ChatMessageCreateOrConnectWithoutChatInput | ChatMessageCreateOrConnectWithoutChatInput[] | No |
| createMany | ChatMessageCreateManyChatInputEnvelope | No |
| connect | ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChatMessageCreateWithoutChatInput | ChatMessageCreateWithoutChatInput[] | ChatMessageUncheckedCreateWithoutChatInput | ChatMessageUncheckedCreateWithoutChatInput[] | No |
| connectOrCreate | ChatMessageCreateOrConnectWithoutChatInput | ChatMessageCreateOrConnectWithoutChatInput[] | No |
| createMany | ChatMessageCreateManyChatInputEnvelope | No |
| connect | ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | ChatType | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutCreatedGroupChatsInput | UserUncheckedCreateWithoutCreatedGroupChatsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutCreatedGroupChatsInput | No |
| upsert | UserUpsertWithoutCreatedGroupChatsInput | No |
| disconnect | Boolean | UserWhereInput | No |
| delete | Boolean | UserWhereInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutCreatedGroupChatsInput | UserUpdateWithoutCreatedGroupChatsInput | UserUncheckedUpdateWithoutCreatedGroupChatsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChatCreateWithoutParticipantsInput | ChatUncheckedCreateWithoutParticipantsInput | No |
| connectOrCreate | ChatCreateOrConnectWithoutParticipantsInput | No |
| connect | ChatWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutChatsInput | UserUncheckedCreateWithoutChatsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutChatsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChatCreateWithoutParticipantsInput | ChatUncheckedCreateWithoutParticipantsInput | No |
| connectOrCreate | ChatCreateOrConnectWithoutParticipantsInput | No |
| upsert | ChatUpsertWithoutParticipantsInput | No |
| connect | ChatWhereUniqueInput | No |
| update | ChatUpdateToOneWithWhereWithoutParticipantsInput | ChatUpdateWithoutParticipantsInput | ChatUncheckedUpdateWithoutParticipantsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutChatsInput | UserUncheckedCreateWithoutChatsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutChatsInput | No |
| upsert | UserUpsertWithoutChatsInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutChatsInput | UserUpdateWithoutChatsInput | UserUncheckedUpdateWithoutChatsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutSentChatMessagesInput | UserUncheckedCreateWithoutSentChatMessagesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutSentChatMessagesInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChatCreateWithoutMessagesInput | ChatUncheckedCreateWithoutMessagesInput | No |
| connectOrCreate | ChatCreateOrConnectWithoutMessagesInput | No |
| connect | ChatWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutSentChatMessagesInput | UserUncheckedCreateWithoutSentChatMessagesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutSentChatMessagesInput | No |
| upsert | UserUpsertWithoutSentChatMessagesInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutSentChatMessagesInput | UserUpdateWithoutSentChatMessagesInput | UserUncheckedUpdateWithoutSentChatMessagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChatCreateWithoutMessagesInput | ChatUncheckedCreateWithoutMessagesInput | No |
| connectOrCreate | ChatCreateOrConnectWithoutMessagesInput | No |
| upsert | ChatUpsertWithoutMessagesInput | No |
| connect | ChatWhereUniqueInput | No |
| update | ChatUpdateToOneWithWhereWithoutMessagesInput | ChatUpdateWithoutMessagesInput | ChatUncheckedUpdateWithoutMessagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | No |
| in | String | ListStringFieldRefInput | No |
| notIn | String | ListStringFieldRefInput | No |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| not | String | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | No |
| in | DateTime | ListDateTimeFieldRefInput | No |
| notIn | DateTime | ListDateTimeFieldRefInput | No |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | Null | Yes |
| in | String | ListStringFieldRefInput | Null | Yes |
| notIn | String | ListStringFieldRefInput | Null | Yes |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| not | String | NestedStringNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | Null | Yes |
| not | Boolean | NestedBoolNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | UserStatus | EnumUserStatusFieldRefInput | No |
| in | UserStatus[] | ListEnumUserStatusFieldRefInput | No |
| notIn | UserStatus[] | ListEnumUserStatusFieldRefInput | No |
| not | UserStatus | NestedEnumUserStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | No |
| in | String | ListStringFieldRefInput | No |
| notIn | String | ListStringFieldRefInput | No |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| not | String | NestedStringWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedStringFilter | No |
| _max | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | No |
| in | Int | ListIntFieldRefInput | No |
| notIn | Int | ListIntFieldRefInput | No |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | No |
| in | DateTime | ListDateTimeFieldRefInput | No |
| notIn | DateTime | ListDateTimeFieldRefInput | No |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedDateTimeFilter | No |
| _max | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | Null | Yes |
| in | String | ListStringFieldRefInput | Null | Yes |
| notIn | String | ListStringFieldRefInput | Null | Yes |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| not | String | NestedStringNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedStringNullableFilter | No |
| _max | NestedStringNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | Null | Yes |
| in | Int | ListIntFieldRefInput | Null | Yes |
| notIn | Int | ListIntFieldRefInput | Null | Yes |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | Null | Yes |
| not | Boolean | NestedBoolNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedBoolNullableFilter | No |
| _max | NestedBoolNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | UserStatus | EnumUserStatusFieldRefInput | No |
| in | UserStatus[] | ListEnumUserStatusFieldRefInput | No |
| notIn | UserStatus[] | ListEnumUserStatusFieldRefInput | No |
| not | UserStatus | NestedEnumUserStatusWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumUserStatusFilter | No |
| _max | NestedEnumUserStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | Null | Yes |
| in | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| notIn | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | Null | Yes |
| in | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| notIn | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedDateTimeNullableFilter | No |
| _max | NestedDateTimeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | BUMembershipType | EnumBUMembershipTypeFieldRefInput | No |
| in | BUMembershipType[] | ListEnumBUMembershipTypeFieldRefInput | No |
| notIn | BUMembershipType[] | ListEnumBUMembershipTypeFieldRefInput | No |
| not | BUMembershipType | NestedEnumBUMembershipTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | BUMembershipType | EnumBUMembershipTypeFieldRefInput | No |
| in | BUMembershipType[] | ListEnumBUMembershipTypeFieldRefInput | No |
| notIn | BUMembershipType[] | ListEnumBUMembershipTypeFieldRefInput | No |
| not | BUMembershipType | NestedEnumBUMembershipTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumBUMembershipTypeFilter | No |
| _max | NestedEnumBUMembershipTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | RoleScope | EnumRoleScopeFieldRefInput | No |
| in | RoleScope[] | ListEnumRoleScopeFieldRefInput | No |
| notIn | RoleScope[] | ListEnumRoleScopeFieldRefInput | No |
| not | RoleScope | NestedEnumRoleScopeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | No |
| not | Boolean | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | RoleScope | EnumRoleScopeFieldRefInput | No |
| in | RoleScope[] | ListEnumRoleScopeFieldRefInput | No |
| notIn | RoleScope[] | ListEnumRoleScopeFieldRefInput | No |
| not | RoleScope | NestedEnumRoleScopeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumRoleScopeFilter | No |
| _max | NestedEnumRoleScopeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | No |
| not | Boolean | NestedBoolWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedBoolFilter | No |
| _max | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | FieldType | EnumFieldTypeFieldRefInput | No |
| in | FieldType[] | ListEnumFieldTypeFieldRefInput | No |
| notIn | FieldType[] | ListEnumFieldTypeFieldRefInput | No |
| not | FieldType | NestedEnumFieldTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | FieldType | EnumFieldTypeFieldRefInput | No |
| in | FieldType[] | ListEnumFieldTypeFieldRefInput | No |
| notIn | FieldType[] | ListEnumFieldTypeFieldRefInput | No |
| not | FieldType | NestedEnumFieldTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumFieldTypeFilter | No |
| _max | NestedEnumFieldTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | No |
| in | Int | ListIntFieldRefInput | No |
| notIn | Int | ListIntFieldRefInput | No |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedFloatFilter | No |
| _sum | NestedIntFilter | No |
| _min | NestedIntFilter | No |
| _max | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | FloatFieldRefInput | No |
| in | Float | ListFloatFieldRefInput | No |
| notIn | Float | ListFloatFieldRefInput | No |
| lt | Float | FloatFieldRefInput | No |
| lte | Float | FloatFieldRefInput | No |
| gt | Float | FloatFieldRefInput | No |
| gte | Float | FloatFieldRefInput | No |
| not | Float | NestedFloatFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | RequisitionStatus | EnumRequisitionStatusFieldRefInput | No |
| in | RequisitionStatus[] | ListEnumRequisitionStatusFieldRefInput | No |
| notIn | RequisitionStatus[] | ListEnumRequisitionStatusFieldRefInput | No |
| not | RequisitionStatus | NestedEnumRequisitionStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | RequisitionStatus | EnumRequisitionStatusFieldRefInput | No |
| in | RequisitionStatus[] | ListEnumRequisitionStatusFieldRefInput | No |
| notIn | RequisitionStatus[] | ListEnumRequisitionStatusFieldRefInput | No |
| not | RequisitionStatus | NestedEnumRequisitionStatusWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumRequisitionStatusFilter | No |
| _max | NestedEnumRequisitionStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ApprovalStatus | EnumApprovalStatusFieldRefInput | No |
| in | ApprovalStatus[] | ListEnumApprovalStatusFieldRefInput | No |
| notIn | ApprovalStatus[] | ListEnumApprovalStatusFieldRefInput | No |
| not | ApprovalStatus | NestedEnumApprovalStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ApprovalStatus | EnumApprovalStatusFieldRefInput | No |
| in | ApprovalStatus[] | ListEnumApprovalStatusFieldRefInput | No |
| notIn | ApprovalStatus[] | ListEnumApprovalStatusFieldRefInput | No |
| not | ApprovalStatus | NestedEnumApprovalStatusWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumApprovalStatusFilter | No |
| _max | NestedEnumApprovalStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | Null | Yes |
| in | Int | ListIntFieldRefInput | Null | Yes |
| notIn | Int | ListIntFieldRefInput | Null | Yes |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedFloatNullableFilter | No |
| _sum | NestedIntNullableFilter | No |
| _min | NestedIntNullableFilter | No |
| _max | NestedIntNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | FloatFieldRefInput | Null | Yes |
| in | Float | ListFloatFieldRefInput | Null | Yes |
| notIn | Float | ListFloatFieldRefInput | Null | Yes |
| lt | Float | FloatFieldRefInput | No |
| lte | Float | FloatFieldRefInput | No |
| gt | Float | FloatFieldRefInput | No |
| gte | Float | FloatFieldRefInput | No |
| not | Float | NestedFloatNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | ActionType | EnumActionTypeFieldRefInput | No |
| in | ActionType[] | ListEnumActionTypeFieldRefInput | No |
| notIn | ActionType[] | ListEnumActionTypeFieldRefInput | No |
| not | ActionType | NestedEnumActionTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ActionType | EnumActionTypeFieldRefInput | No |
| in | ActionType[] | ListEnumActionTypeFieldRefInput | No |
| notIn | ActionType[] | ListEnumActionTypeFieldRefInput | No |
| not | ActionType | NestedEnumActionTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumActionTypeFilter | No |
| _max | NestedEnumActionTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ChatType | EnumChatTypeFieldRefInput | No |
| in | ChatType[] | ListEnumChatTypeFieldRefInput | No |
| notIn | ChatType[] | ListEnumChatTypeFieldRefInput | No |
| not | ChatType | NestedEnumChatTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ChatType | EnumChatTypeFieldRefInput | No |
| in | ChatType[] | ListEnumChatTypeFieldRefInput | No |
| notIn | ChatType[] | ListEnumChatTypeFieldRefInput | No |
| not | ChatType | NestedEnumChatTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumChatTypeFilter | No |
| _max | NestedEnumChatTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| expiresAt | DateTime | No |
| token | String | No |
| ipAddress | String | Null | Yes |
| userAgent | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| expiresAt | DateTime | No |
| token | String | No |
| ipAddress | String | Null | Yes |
| userAgent | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | SessionWhereUniqueInput | No |
| create | SessionCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | SessionCreateManyUserInput | SessionCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| accountId | String | No |
| providerId | String | No |
| accessToken | String | Null | Yes |
| refreshToken | String | Null | Yes |
| idToken | String | Null | Yes |
| accessTokenExpiresAt | DateTime | Null | Yes |
| refreshTokenExpiresAt | DateTime | Null | Yes |
| scope | String | Null | Yes |
| password | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| accountId | String | No |
| providerId | String | No |
| accessToken | String | Null | Yes |
| refreshToken | String | Null | Yes |
| idToken | String | Null | Yes |
| accessTokenExpiresAt | DateTime | Null | Yes |
| refreshTokenExpiresAt | DateTime | Null | Yes |
| scope | String | Null | Yes |
| password | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | AccountWhereUniqueInput | No |
| create | AccountCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | AccountCreateManyUserInput | AccountCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| assignedAt | DateTime | No |
| role | RoleCreateNestedOneWithoutUserAssignmentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| roleId | String | No |
| assignedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserRoleAssignmentWhereUniqueInput | No |
| create | UserRoleAssignmentCreateWithoutUserInput | UserRoleAssignmentUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | UserRoleAssignmentCreateManyUserInput | UserRoleAssignmentCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| membershipType | BUMembershipType | No |
| businessUnit | BusinessUnitCreateNestedOneWithoutMembersInput | No |
| Name | Type | Nullable |
|---|---|---|
| businessUnitId | String | No |
| membershipType | BUMembershipType | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserBusinessUnitWhereUniqueInput | No |
| create | UserBusinessUnitCreateWithoutUserInput | UserBusinessUnitUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | UserBusinessUnitCreateManyUserInput | UserBusinessUnitCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| message | String | No |
| isRead | Boolean | No |
| requisition | RequisitionCreateNestedOneWithoutNotificationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| message | String | No |
| isRead | Boolean | No |
| requisitionId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | NotificationWhereUniqueInput | No |
| create | NotificationCreateWithoutRecipientInput | NotificationUncheckedCreateWithoutRecipientInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | NotificationCreateManyRecipientInput | NotificationCreateManyRecipientInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| members | UserBusinessUnitCreateNestedManyWithoutBusinessUnitInput | No |
| roles | RoleCreateNestedManyWithoutBusinessUnitInput | No |
| requisitionTemplates | RequisitionTemplateCreateNestedManyWithoutBusinessUnitInput | No |
| requisitions | RequisitionCreateNestedManyWithoutFromBUInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| members | UserBusinessUnitUncheckedCreateNestedManyWithoutBusinessUnitInput | No |
| roles | RoleUncheckedCreateNestedManyWithoutBusinessUnitInput | No |
| requisitionTemplates | RequisitionTemplateUncheckedCreateNestedManyWithoutBusinessUnitInput | No |
| requisitions | RequisitionUncheckedCreateNestedManyWithoutFromBUInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BusinessUnitWhereUniqueInput | No |
| create | BusinessUnitCreateWithoutHeadInput | BusinessUnitUncheckedCreateWithoutHeadInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| overallStatus | RequisitionStatus | No |
| fromBU | BusinessUnitCreateNestedOneWithoutRequisitionsInput | No |
| template | RequisitionTemplateCreateNestedOneWithoutRequisitionsInput | No |
| approvalHistory | RequisitionApprovalCreateNestedManyWithoutRequisitionInput | No |
| submittedValues | RequisitionValueCreateNestedManyWithoutRequisitionInput | No |
| attachments | AttachmentCreateNestedManyWithoutRequisitionInput | No |
| actionLog | CommentCreateNestedManyWithoutRequisitionInput | No |
| notifications | NotificationCreateNestedManyWithoutRequisitionInput | No |
| tags | RequisitionTagCreateNestedManyWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| businessUnitId | String | No |
| templateId | String | No |
| overallStatus | RequisitionStatus | No |
| approvalHistory | RequisitionApprovalUncheckedCreateNestedManyWithoutRequisitionInput | No |
| submittedValues | RequisitionValueUncheckedCreateNestedManyWithoutRequisitionInput | No |
| attachments | AttachmentUncheckedCreateNestedManyWithoutRequisitionInput | No |
| actionLog | CommentUncheckedCreateNestedManyWithoutRequisitionInput | No |
| notifications | NotificationUncheckedCreateNestedManyWithoutRequisitionInput | No |
| tags | RequisitionTagUncheckedCreateNestedManyWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionWhereUniqueInput | No |
| create | RequisitionCreateWithoutInitiatorInput | RequisitionUncheckedCreateWithoutInitiatorInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | RequisitionCreateManyInitiatorInput | RequisitionCreateManyInitiatorInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| status | ApprovalStatus | No |
| actionedAt | DateTime | Null | Yes |
| requisition | RequisitionCreateNestedOneWithoutApprovalHistoryInput | No |
| stepDefinition | ApprovalStepDefinitionCreateNestedOneWithoutRequisitionApprovalsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| requisitionId | String | No |
| stepDefinitionId | String | No |
| status | ApprovalStatus | No |
| actionedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionApprovalWhereUniqueInput | No |
| create | RequisitionApprovalCreateWithoutApproverInput | RequisitionApprovalUncheckedCreateWithoutApproverInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | RequisitionApprovalCreateManyApproverInput | RequisitionApprovalCreateManyApproverInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| content | String | No |
| action | ActionType | No |
| requisition | RequisitionCreateNestedOneWithoutActionLogInput | No |
| attachments | AttachmentCreateNestedManyWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| content | String | No |
| action | ActionType | No |
| requisitionId | String | No |
| attachments | AttachmentUncheckedCreateNestedManyWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentWhereUniqueInput | No |
| create | CommentCreateWithoutAuthorInput | CommentUncheckedCreateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | CommentCreateManyAuthorInput | CommentCreateManyAuthorInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| url | String | No |
| filename | String | No |
| filetype | String | No |
| size | Int | Null | Yes |
| requisition | RequisitionCreateNestedOneWithoutAttachmentsInput | No |
| comment | CommentCreateNestedOneWithoutAttachmentsInput | No |
| chatMessage | ChatMessageCreateNestedOneWithoutAttachmentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| url | String | No |
| filename | String | No |
| filetype | String | No |
| size | Int | Null | Yes |
| requisitionId | String | Null | Yes |
| commentId | String | Null | Yes |
| chatMessageId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | AttachmentWhereUniqueInput | No |
| create | AttachmentCreateWithoutUploaderInput | AttachmentUncheckedCreateWithoutUploaderInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | AttachmentCreateManyUploaderInput | AttachmentCreateManyUploaderInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| label | String | No |
| color | String | No |
| requisitions | RequisitionTagCreateNestedManyWithoutTagInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| label | String | No |
| color | String | No |
| requisitions | RequisitionTagUncheckedCreateNestedManyWithoutTagInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TagWhereUniqueInput | No |
| create | TagCreateWithoutCreatorInput | TagUncheckedCreateWithoutCreatorInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | TagCreateManyCreatorInput | TagCreateManyCreatorInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| assignedAt | DateTime | No |
| requisition | RequisitionCreateNestedOneWithoutTagsInput | No |
| tag | TagCreateNestedOneWithoutRequisitionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| requisitionId | String | No |
| tagId | String | No |
| assignedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionTagWhereUniqueInput | No |
| create | RequisitionTagCreateWithoutAssignedByInput | RequisitionTagUncheckedCreateWithoutAssignedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | RequisitionTagCreateManyAssignedByInput | RequisitionTagCreateManyAssignedByInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| lastReadAt | DateTime | Null | Yes |
| chat | ChatCreateNestedOneWithoutParticipantsInput | No |
| Name | Type | Nullable |
|---|---|---|
| chatId | String | No |
| lastReadAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | ChatParticipantWhereUniqueInput | No |
| create | ChatParticipantCreateWithoutUserInput | ChatParticipantUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ChatParticipantCreateManyUserInput | ChatParticipantCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| content | String | Null | Yes |
| chat | ChatCreateNestedOneWithoutMessagesInput | No |
| attachments | AttachmentCreateNestedManyWithoutChatMessageInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| content | String | Null | Yes |
| chatId | String | No |
| attachments | AttachmentUncheckedCreateNestedManyWithoutChatMessageInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatMessageWhereUniqueInput | No |
| create | ChatMessageCreateWithoutSenderInput | ChatMessageUncheckedCreateWithoutSenderInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ChatMessageCreateManySenderInput | ChatMessageCreateManySenderInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| chatType | ChatType | No |
| groupName | String | Null | Yes |
| groupImageUrl | String | Null | Yes |
| participants | ChatParticipantCreateNestedManyWithoutChatInput | No |
| messages | ChatMessageCreateNestedManyWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| chatType | ChatType | No |
| groupName | String | Null | Yes |
| groupImageUrl | String | Null | Yes |
| participants | ChatParticipantUncheckedCreateNestedManyWithoutChatInput | No |
| messages | ChatMessageUncheckedCreateNestedManyWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatWhereUniqueInput | No |
| create | ChatCreateWithoutCreatorInput | ChatUncheckedCreateWithoutCreatorInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ChatCreateManyCreatorInput | ChatCreateManyCreatorInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | SessionWhereUniqueInput | No |
| update | SessionUpdateWithoutUserInput | SessionUncheckedUpdateWithoutUserInput | No |
| create | SessionCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SessionWhereUniqueInput | No |
| data | SessionUpdateWithoutUserInput | SessionUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SessionScalarWhereInput | No |
| data | SessionUpdateManyMutationInput | SessionUncheckedUpdateManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SessionScalarWhereInput | SessionScalarWhereInput[] | No |
| OR | SessionScalarWhereInput[] | No |
| NOT | SessionScalarWhereInput | SessionScalarWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| expiresAt | DateTimeFilter | DateTime | No |
| token | StringFilter | String | No |
| ipAddress | StringNullableFilter | String | Null | Yes |
| userAgent | StringNullableFilter | String | Null | Yes |
| userId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | AccountWhereUniqueInput | No |
| update | AccountUpdateWithoutUserInput | AccountUncheckedUpdateWithoutUserInput | No |
| create | AccountCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AccountWhereUniqueInput | No |
| data | AccountUpdateWithoutUserInput | AccountUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AccountScalarWhereInput | No |
| data | AccountUpdateManyMutationInput | AccountUncheckedUpdateManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | AccountScalarWhereInput | AccountScalarWhereInput[] | No |
| OR | AccountScalarWhereInput[] | No |
| NOT | AccountScalarWhereInput | AccountScalarWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| accountId | StringFilter | String | No |
| providerId | StringFilter | String | No |
| accessToken | StringNullableFilter | String | Null | Yes |
| refreshToken | StringNullableFilter | String | Null | Yes |
| idToken | StringNullableFilter | String | Null | Yes |
| accessTokenExpiresAt | DateTimeNullableFilter | DateTime | Null | Yes |
| refreshTokenExpiresAt | DateTimeNullableFilter | DateTime | Null | Yes |
| scope | StringNullableFilter | String | Null | Yes |
| password | StringNullableFilter | String | Null | Yes |
| userId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserRoleAssignmentWhereUniqueInput | No |
| update | UserRoleAssignmentUpdateWithoutUserInput | UserRoleAssignmentUncheckedUpdateWithoutUserInput | No |
| create | UserRoleAssignmentCreateWithoutUserInput | UserRoleAssignmentUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserRoleAssignmentWhereUniqueInput | No |
| data | UserRoleAssignmentUpdateWithoutUserInput | UserRoleAssignmentUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserRoleAssignmentScalarWhereInput | No |
| data | UserRoleAssignmentUpdateManyMutationInput | UserRoleAssignmentUncheckedUpdateManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserRoleAssignmentScalarWhereInput | UserRoleAssignmentScalarWhereInput[] | No |
| OR | UserRoleAssignmentScalarWhereInput[] | No |
| NOT | UserRoleAssignmentScalarWhereInput | UserRoleAssignmentScalarWhereInput[] | No |
| userId | StringFilter | String | No |
| roleId | StringFilter | String | No |
| assignedAt | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserBusinessUnitWhereUniqueInput | No |
| update | UserBusinessUnitUpdateWithoutUserInput | UserBusinessUnitUncheckedUpdateWithoutUserInput | No |
| create | UserBusinessUnitCreateWithoutUserInput | UserBusinessUnitUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserBusinessUnitWhereUniqueInput | No |
| data | UserBusinessUnitUpdateWithoutUserInput | UserBusinessUnitUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserBusinessUnitScalarWhereInput | No |
| data | UserBusinessUnitUpdateManyMutationInput | UserBusinessUnitUncheckedUpdateManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserBusinessUnitScalarWhereInput | UserBusinessUnitScalarWhereInput[] | No |
| OR | UserBusinessUnitScalarWhereInput[] | No |
| NOT | UserBusinessUnitScalarWhereInput | UserBusinessUnitScalarWhereInput[] | No |
| userId | StringFilter | String | No |
| businessUnitId | StringFilter | String | No |
| membershipType | EnumBUMembershipTypeFilter | BUMembershipType | No |
| Name | Type | Nullable |
|---|---|---|
| where | NotificationWhereUniqueInput | No |
| update | NotificationUpdateWithoutRecipientInput | NotificationUncheckedUpdateWithoutRecipientInput | No |
| create | NotificationCreateWithoutRecipientInput | NotificationUncheckedCreateWithoutRecipientInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | NotificationWhereUniqueInput | No |
| data | NotificationUpdateWithoutRecipientInput | NotificationUncheckedUpdateWithoutRecipientInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | NotificationScalarWhereInput | No |
| data | NotificationUpdateManyMutationInput | NotificationUncheckedUpdateManyWithoutRecipientInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | NotificationScalarWhereInput | NotificationScalarWhereInput[] | No |
| OR | NotificationScalarWhereInput[] | No |
| NOT | NotificationScalarWhereInput | NotificationScalarWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| message | StringFilter | String | No |
| isRead | BoolFilter | Boolean | No |
| recipientId | StringFilter | String | No |
| requisitionId | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| update | BusinessUnitUpdateWithoutHeadInput | BusinessUnitUncheckedUpdateWithoutHeadInput | No |
| create | BusinessUnitCreateWithoutHeadInput | BusinessUnitUncheckedCreateWithoutHeadInput | No |
| where | BusinessUnitWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BusinessUnitWhereInput | No |
| data | BusinessUnitUpdateWithoutHeadInput | BusinessUnitUncheckedUpdateWithoutHeadInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| members | UserBusinessUnitUpdateManyWithoutBusinessUnitNestedInput | No |
| roles | RoleUpdateManyWithoutBusinessUnitNestedInput | No |
| requisitionTemplates | RequisitionTemplateUpdateManyWithoutBusinessUnitNestedInput | No |
| requisitions | RequisitionUpdateManyWithoutFromBUNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| members | UserBusinessUnitUncheckedUpdateManyWithoutBusinessUnitNestedInput | No |
| roles | RoleUncheckedUpdateManyWithoutBusinessUnitNestedInput | No |
| requisitionTemplates | RequisitionTemplateUncheckedUpdateManyWithoutBusinessUnitNestedInput | No |
| requisitions | RequisitionUncheckedUpdateManyWithoutFromBUNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionWhereUniqueInput | No |
| update | RequisitionUpdateWithoutInitiatorInput | RequisitionUncheckedUpdateWithoutInitiatorInput | No |
| create | RequisitionCreateWithoutInitiatorInput | RequisitionUncheckedCreateWithoutInitiatorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionWhereUniqueInput | No |
| data | RequisitionUpdateWithoutInitiatorInput | RequisitionUncheckedUpdateWithoutInitiatorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionScalarWhereInput | No |
| data | RequisitionUpdateManyMutationInput | RequisitionUncheckedUpdateManyWithoutInitiatorInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RequisitionScalarWhereInput | RequisitionScalarWhereInput[] | No |
| OR | RequisitionScalarWhereInput[] | No |
| NOT | RequisitionScalarWhereInput | RequisitionScalarWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| initiatorId | StringFilter | String | No |
| businessUnitId | StringFilter | String | No |
| templateId | StringFilter | String | No |
| overallStatus | EnumRequisitionStatusFilter | RequisitionStatus | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionApprovalWhereUniqueInput | No |
| data | RequisitionApprovalUpdateWithoutApproverInput | RequisitionApprovalUncheckedUpdateWithoutApproverInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionApprovalScalarWhereInput | No |
| data | RequisitionApprovalUpdateManyMutationInput | RequisitionApprovalUncheckedUpdateManyWithoutApproverInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RequisitionApprovalScalarWhereInput | RequisitionApprovalScalarWhereInput[] | No |
| OR | RequisitionApprovalScalarWhereInput[] | No |
| NOT | RequisitionApprovalScalarWhereInput | RequisitionApprovalScalarWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| requisitionId | StringFilter | String | No |
| stepDefinitionId | StringFilter | String | No |
| approverId | StringNullableFilter | String | Null | Yes |
| status | EnumApprovalStatusFilter | ApprovalStatus | No |
| actionedAt | DateTimeNullableFilter | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | CommentWhereUniqueInput | No |
| update | CommentUpdateWithoutAuthorInput | CommentUncheckedUpdateWithoutAuthorInput | No |
| create | CommentCreateWithoutAuthorInput | CommentUncheckedCreateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentWhereUniqueInput | No |
| data | CommentUpdateWithoutAuthorInput | CommentUncheckedUpdateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentScalarWhereInput | No |
| data | CommentUpdateManyMutationInput | CommentUncheckedUpdateManyWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CommentScalarWhereInput | CommentScalarWhereInput[] | No |
| OR | CommentScalarWhereInput[] | No |
| NOT | CommentScalarWhereInput | CommentScalarWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| content | StringFilter | String | No |
| action | EnumActionTypeFilter | ActionType | No |
| authorId | StringFilter | String | No |
| requisitionId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | AttachmentWhereUniqueInput | No |
| update | AttachmentUpdateWithoutUploaderInput | AttachmentUncheckedUpdateWithoutUploaderInput | No |
| create | AttachmentCreateWithoutUploaderInput | AttachmentUncheckedCreateWithoutUploaderInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AttachmentWhereUniqueInput | No |
| data | AttachmentUpdateWithoutUploaderInput | AttachmentUncheckedUpdateWithoutUploaderInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AttachmentScalarWhereInput | No |
| data | AttachmentUpdateManyMutationInput | AttachmentUncheckedUpdateManyWithoutUploaderInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | AttachmentScalarWhereInput | AttachmentScalarWhereInput[] | No |
| OR | AttachmentScalarWhereInput[] | No |
| NOT | AttachmentScalarWhereInput | AttachmentScalarWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| url | StringFilter | String | No |
| filename | StringFilter | String | No |
| filetype | StringFilter | String | No |
| size | IntNullableFilter | Int | Null | Yes |
| uploaderId | StringFilter | String | No |
| requisitionId | StringNullableFilter | String | Null | Yes |
| commentId | StringNullableFilter | String | Null | Yes |
| chatMessageId | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | TagWhereUniqueInput | No |
| update | TagUpdateWithoutCreatorInput | TagUncheckedUpdateWithoutCreatorInput | No |
| create | TagCreateWithoutCreatorInput | TagUncheckedCreateWithoutCreatorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TagWhereUniqueInput | No |
| data | TagUpdateWithoutCreatorInput | TagUncheckedUpdateWithoutCreatorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TagScalarWhereInput | No |
| data | TagUpdateManyMutationInput | TagUncheckedUpdateManyWithoutCreatorInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TagScalarWhereInput | TagScalarWhereInput[] | No |
| OR | TagScalarWhereInput[] | No |
| NOT | TagScalarWhereInput | TagScalarWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| label | StringFilter | String | No |
| color | StringFilter | String | No |
| creatorId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionTagWhereUniqueInput | No |
| update | RequisitionTagUpdateWithoutAssignedByInput | RequisitionTagUncheckedUpdateWithoutAssignedByInput | No |
| create | RequisitionTagCreateWithoutAssignedByInput | RequisitionTagUncheckedCreateWithoutAssignedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionTagWhereUniqueInput | No |
| data | RequisitionTagUpdateWithoutAssignedByInput | RequisitionTagUncheckedUpdateWithoutAssignedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionTagScalarWhereInput | No |
| data | RequisitionTagUpdateManyMutationInput | RequisitionTagUncheckedUpdateManyWithoutAssignedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RequisitionTagScalarWhereInput | RequisitionTagScalarWhereInput[] | No |
| OR | RequisitionTagScalarWhereInput[] | No |
| NOT | RequisitionTagScalarWhereInput | RequisitionTagScalarWhereInput[] | No |
| requisitionId | StringFilter | String | No |
| tagId | StringFilter | String | No |
| assignedById | StringFilter | String | No |
| assignedAt | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatParticipantWhereUniqueInput | No |
| update | ChatParticipantUpdateWithoutUserInput | ChatParticipantUncheckedUpdateWithoutUserInput | No |
| create | ChatParticipantCreateWithoutUserInput | ChatParticipantUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatParticipantWhereUniqueInput | No |
| data | ChatParticipantUpdateWithoutUserInput | ChatParticipantUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatParticipantScalarWhereInput | No |
| data | ChatParticipantUpdateManyMutationInput | ChatParticipantUncheckedUpdateManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ChatParticipantScalarWhereInput | ChatParticipantScalarWhereInput[] | No |
| OR | ChatParticipantScalarWhereInput[] | No |
| NOT | ChatParticipantScalarWhereInput | ChatParticipantScalarWhereInput[] | No |
| chatId | StringFilter | String | No |
| userId | StringFilter | String | No |
| lastReadAt | DateTimeNullableFilter | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | ChatMessageWhereUniqueInput | No |
| update | ChatMessageUpdateWithoutSenderInput | ChatMessageUncheckedUpdateWithoutSenderInput | No |
| create | ChatMessageCreateWithoutSenderInput | ChatMessageUncheckedCreateWithoutSenderInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatMessageWhereUniqueInput | No |
| data | ChatMessageUpdateWithoutSenderInput | ChatMessageUncheckedUpdateWithoutSenderInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatMessageScalarWhereInput | No |
| data | ChatMessageUpdateManyMutationInput | ChatMessageUncheckedUpdateManyWithoutSenderInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ChatMessageScalarWhereInput | ChatMessageScalarWhereInput[] | No |
| OR | ChatMessageScalarWhereInput[] | No |
| NOT | ChatMessageScalarWhereInput | ChatMessageScalarWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| content | StringNullableFilter | String | Null | Yes |
| senderId | StringFilter | String | No |
| chatId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatWhereUniqueInput | No |
| update | ChatUpdateWithoutCreatorInput | ChatUncheckedUpdateWithoutCreatorInput | No |
| create | ChatCreateWithoutCreatorInput | ChatUncheckedCreateWithoutCreatorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatWhereUniqueInput | No |
| data | ChatUpdateWithoutCreatorInput | ChatUncheckedUpdateWithoutCreatorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatScalarWhereInput | No |
| data | ChatUpdateManyMutationInput | ChatUncheckedUpdateManyWithoutCreatorInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ChatScalarWhereInput | ChatScalarWhereInput[] | No |
| OR | ChatScalarWhereInput[] | No |
| NOT | ChatScalarWhereInput | ChatScalarWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| chatType | EnumChatTypeFilter | ChatType | No |
| groupName | StringNullableFilter | String | Null | Yes |
| groupImageUrl | StringNullableFilter | String | Null | Yes |
| creatorId | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutSessionsInput | UserUncheckedCreateWithoutSessionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutSessionsInput | UserUncheckedUpdateWithoutSessionsInput | No |
| create | UserCreateWithoutSessionsInput | UserUncheckedCreateWithoutSessionsInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutSessionsInput | UserUncheckedUpdateWithoutSessionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutAccountsInput | UserUncheckedCreateWithoutAccountsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutAccountsInput | UserUncheckedUpdateWithoutAccountsInput | No |
| create | UserCreateWithoutAccountsInput | UserUncheckedCreateWithoutAccountsInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutAccountsInput | UserUncheckedUpdateWithoutAccountsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutHeadedBusinessUnitInput | UserUncheckedCreateWithoutHeadedBusinessUnitInput | No |
| Name | Type | Nullable |
|---|---|---|
| membershipType | BUMembershipType | No |
| user | UserCreateNestedOneWithoutBusinessUnitsInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| membershipType | BUMembershipType | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserBusinessUnitWhereUniqueInput | No |
| create | UserBusinessUnitCreateWithoutBusinessUnitInput | UserBusinessUnitUncheckedCreateWithoutBusinessUnitInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | UserBusinessUnitCreateManyBusinessUnitInput | UserBusinessUnitCreateManyBusinessUnitInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| scope | RoleScope | No |
| isBUAdmin | Boolean | No |
| userAssignments | UserRoleAssignmentCreateNestedManyWithoutRoleInput | No |
| accessibleTemplates | TemplateInitiatorAccessCreateNestedManyWithoutRoleInput | No |
| approvalStepDefinitions | ApprovalStepDefinitionCreateNestedManyWithoutApproverRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| scope | RoleScope | No |
| isBUAdmin | Boolean | No |
| userAssignments | UserRoleAssignmentUncheckedCreateNestedManyWithoutRoleInput | No |
| accessibleTemplates | TemplateInitiatorAccessUncheckedCreateNestedManyWithoutRoleInput | No |
| approvalStepDefinitions | ApprovalStepDefinitionUncheckedCreateNestedManyWithoutApproverRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RoleWhereUniqueInput | No |
| create | RoleCreateWithoutBusinessUnitInput | RoleUncheckedCreateWithoutBusinessUnitInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | RoleCreateManyBusinessUnitInput | RoleCreateManyBusinessUnitInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| description | String | Null | Yes |
| fields | TemplateFieldCreateNestedManyWithoutTemplateInput | No |
| initiatorAccess | TemplateInitiatorAccessCreateNestedManyWithoutTemplateInput | No |
| approvalWorkflow | ApprovalWorkflowCreateNestedOneWithoutTemplatesInput | No |
| requisitions | RequisitionCreateNestedManyWithoutTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| description | String | Null | Yes |
| approvalWorkflowId | String | Null | Yes |
| fields | TemplateFieldUncheckedCreateNestedManyWithoutTemplateInput | No |
| initiatorAccess | TemplateInitiatorAccessUncheckedCreateNestedManyWithoutTemplateInput | No |
| requisitions | RequisitionUncheckedCreateNestedManyWithoutTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionTemplateWhereUniqueInput | No |
| create | RequisitionTemplateCreateWithoutBusinessUnitInput | RequisitionTemplateUncheckedCreateWithoutBusinessUnitInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | RequisitionTemplateCreateManyBusinessUnitInput | RequisitionTemplateCreateManyBusinessUnitInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| overallStatus | RequisitionStatus | No |
| initiator | UserCreateNestedOneWithoutInitiatedRequisitionsInput | No |
| template | RequisitionTemplateCreateNestedOneWithoutRequisitionsInput | No |
| approvalHistory | RequisitionApprovalCreateNestedManyWithoutRequisitionInput | No |
| submittedValues | RequisitionValueCreateNestedManyWithoutRequisitionInput | No |
| attachments | AttachmentCreateNestedManyWithoutRequisitionInput | No |
| actionLog | CommentCreateNestedManyWithoutRequisitionInput | No |
| notifications | NotificationCreateNestedManyWithoutRequisitionInput | No |
| tags | RequisitionTagCreateNestedManyWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| initiatorId | String | No |
| templateId | String | No |
| overallStatus | RequisitionStatus | No |
| approvalHistory | RequisitionApprovalUncheckedCreateNestedManyWithoutRequisitionInput | No |
| submittedValues | RequisitionValueUncheckedCreateNestedManyWithoutRequisitionInput | No |
| attachments | AttachmentUncheckedCreateNestedManyWithoutRequisitionInput | No |
| actionLog | CommentUncheckedCreateNestedManyWithoutRequisitionInput | No |
| notifications | NotificationUncheckedCreateNestedManyWithoutRequisitionInput | No |
| tags | RequisitionTagUncheckedCreateNestedManyWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionWhereUniqueInput | No |
| create | RequisitionCreateWithoutFromBUInput | RequisitionUncheckedCreateWithoutFromBUInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | RequisitionCreateManyFromBUInput | RequisitionCreateManyFromBUInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutHeadedBusinessUnitInput | UserUncheckedUpdateWithoutHeadedBusinessUnitInput | No |
| create | UserCreateWithoutHeadedBusinessUnitInput | UserUncheckedCreateWithoutHeadedBusinessUnitInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutHeadedBusinessUnitInput | UserUncheckedUpdateWithoutHeadedBusinessUnitInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserBusinessUnitWhereUniqueInput | No |
| data | UserBusinessUnitUpdateWithoutBusinessUnitInput | UserBusinessUnitUncheckedUpdateWithoutBusinessUnitInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserBusinessUnitScalarWhereInput | No |
| data | UserBusinessUnitUpdateManyMutationInput | UserBusinessUnitUncheckedUpdateManyWithoutBusinessUnitInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RoleWhereUniqueInput | No |
| update | RoleUpdateWithoutBusinessUnitInput | RoleUncheckedUpdateWithoutBusinessUnitInput | No |
| create | RoleCreateWithoutBusinessUnitInput | RoleUncheckedCreateWithoutBusinessUnitInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RoleWhereUniqueInput | No |
| data | RoleUpdateWithoutBusinessUnitInput | RoleUncheckedUpdateWithoutBusinessUnitInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RoleScalarWhereInput | No |
| data | RoleUpdateManyMutationInput | RoleUncheckedUpdateManyWithoutBusinessUnitInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RoleScalarWhereInput | RoleScalarWhereInput[] | No |
| OR | RoleScalarWhereInput[] | No |
| NOT | RoleScalarWhereInput | RoleScalarWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| name | StringFilter | String | No |
| scope | EnumRoleScopeFilter | RoleScope | No |
| isBUAdmin | BoolFilter | Boolean | No |
| businessUnitId | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionTemplateWhereUniqueInput | No |
| data | RequisitionTemplateUpdateWithoutBusinessUnitInput | RequisitionTemplateUncheckedUpdateWithoutBusinessUnitInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionTemplateScalarWhereInput | No |
| data | RequisitionTemplateUpdateManyMutationInput | RequisitionTemplateUncheckedUpdateManyWithoutBusinessUnitInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RequisitionTemplateScalarWhereInput | RequisitionTemplateScalarWhereInput[] | No |
| OR | RequisitionTemplateScalarWhereInput[] | No |
| NOT | RequisitionTemplateScalarWhereInput | RequisitionTemplateScalarWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| name | StringFilter | String | No |
| description | StringNullableFilter | String | Null | Yes |
| businessUnitId | StringFilter | String | No |
| approvalWorkflowId | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionWhereUniqueInput | No |
| update | RequisitionUpdateWithoutFromBUInput | RequisitionUncheckedUpdateWithoutFromBUInput | No |
| create | RequisitionCreateWithoutFromBUInput | RequisitionUncheckedCreateWithoutFromBUInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionWhereUniqueInput | No |
| data | RequisitionUpdateWithoutFromBUInput | RequisitionUncheckedUpdateWithoutFromBUInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionScalarWhereInput | No |
| data | RequisitionUpdateManyMutationInput | RequisitionUncheckedUpdateManyWithoutFromBUInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutBusinessUnitsInput | UserUncheckedCreateWithoutBusinessUnitsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| head | UserCreateNestedOneWithoutHeadedBusinessUnitInput | No |
| roles | RoleCreateNestedManyWithoutBusinessUnitInput | No |
| requisitionTemplates | RequisitionTemplateCreateNestedManyWithoutBusinessUnitInput | No |
| requisitions | RequisitionCreateNestedManyWithoutFromBUInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| headId | String | No |
| roles | RoleUncheckedCreateNestedManyWithoutBusinessUnitInput | No |
| requisitionTemplates | RequisitionTemplateUncheckedCreateNestedManyWithoutBusinessUnitInput | No |
| requisitions | RequisitionUncheckedCreateNestedManyWithoutFromBUInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BusinessUnitWhereUniqueInput | No |
| create | BusinessUnitCreateWithoutMembersInput | BusinessUnitUncheckedCreateWithoutMembersInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutBusinessUnitsInput | UserUncheckedUpdateWithoutBusinessUnitsInput | No |
| create | UserCreateWithoutBusinessUnitsInput | UserUncheckedCreateWithoutBusinessUnitsInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutBusinessUnitsInput | UserUncheckedUpdateWithoutBusinessUnitsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | BusinessUnitUpdateWithoutMembersInput | BusinessUnitUncheckedUpdateWithoutMembersInput | No |
| create | BusinessUnitCreateWithoutMembersInput | BusinessUnitUncheckedCreateWithoutMembersInput | No |
| where | BusinessUnitWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BusinessUnitWhereInput | No |
| data | BusinessUnitUpdateWithoutMembersInput | BusinessUnitUncheckedUpdateWithoutMembersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| head | UserUpdateOneRequiredWithoutHeadedBusinessUnitNestedInput | No |
| roles | RoleUpdateManyWithoutBusinessUnitNestedInput | No |
| requisitionTemplates | RequisitionTemplateUpdateManyWithoutBusinessUnitNestedInput | No |
| requisitions | RequisitionUpdateManyWithoutFromBUNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| headId | String | StringFieldUpdateOperationsInput | No |
| roles | RoleUncheckedUpdateManyWithoutBusinessUnitNestedInput | No |
| requisitionTemplates | RequisitionTemplateUncheckedUpdateManyWithoutBusinessUnitNestedInput | No |
| requisitions | RequisitionUncheckedUpdateManyWithoutFromBUNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| head | UserCreateNestedOneWithoutHeadedBusinessUnitInput | No |
| members | UserBusinessUnitCreateNestedManyWithoutBusinessUnitInput | No |
| requisitionTemplates | RequisitionTemplateCreateNestedManyWithoutBusinessUnitInput | No |
| requisitions | RequisitionCreateNestedManyWithoutFromBUInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| headId | String | No |
| members | UserBusinessUnitUncheckedCreateNestedManyWithoutBusinessUnitInput | No |
| requisitionTemplates | RequisitionTemplateUncheckedCreateNestedManyWithoutBusinessUnitInput | No |
| requisitions | RequisitionUncheckedCreateNestedManyWithoutFromBUInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BusinessUnitWhereUniqueInput | No |
| create | BusinessUnitCreateWithoutRolesInput | BusinessUnitUncheckedCreateWithoutRolesInput | No |
| Name | Type | Nullable |
|---|---|---|
| assignedAt | DateTime | No |
| user | UserCreateNestedOneWithoutRoleAssignmentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| assignedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserRoleAssignmentWhereUniqueInput | No |
| create | UserRoleAssignmentCreateWithoutRoleInput | UserRoleAssignmentUncheckedCreateWithoutRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | UserRoleAssignmentCreateManyRoleInput | UserRoleAssignmentCreateManyRoleInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| template | RequisitionTemplateCreateNestedOneWithoutInitiatorAccessInput | No |
| Name | Type | Nullable |
|---|---|---|
| templateId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | TemplateInitiatorAccessWhereUniqueInput | No |
| create | TemplateInitiatorAccessCreateWithoutRoleInput | TemplateInitiatorAccessUncheckedCreateWithoutRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | TemplateInitiatorAccessCreateManyRoleInput | TemplateInitiatorAccessCreateManyRoleInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| stepNumber | Int | No |
| workflow | ApprovalWorkflowCreateNestedOneWithoutStepsInput | No |
| requisitionApprovals | RequisitionApprovalCreateNestedManyWithoutStepDefinitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| workflowId | String | No |
| stepNumber | Int | No |
| requisitionApprovals | RequisitionApprovalUncheckedCreateNestedManyWithoutStepDefinitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ApprovalStepDefinitionWhereUniqueInput | No |
| create | ApprovalStepDefinitionCreateWithoutApproverRoleInput | ApprovalStepDefinitionUncheckedCreateWithoutApproverRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ApprovalStepDefinitionCreateManyApproverRoleInput | ApprovalStepDefinitionCreateManyApproverRoleInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | BusinessUnitUpdateWithoutRolesInput | BusinessUnitUncheckedUpdateWithoutRolesInput | No |
| create | BusinessUnitCreateWithoutRolesInput | BusinessUnitUncheckedCreateWithoutRolesInput | No |
| where | BusinessUnitWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BusinessUnitWhereInput | No |
| data | BusinessUnitUpdateWithoutRolesInput | BusinessUnitUncheckedUpdateWithoutRolesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| head | UserUpdateOneRequiredWithoutHeadedBusinessUnitNestedInput | No |
| members | UserBusinessUnitUpdateManyWithoutBusinessUnitNestedInput | No |
| requisitionTemplates | RequisitionTemplateUpdateManyWithoutBusinessUnitNestedInput | No |
| requisitions | RequisitionUpdateManyWithoutFromBUNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| headId | String | StringFieldUpdateOperationsInput | No |
| members | UserBusinessUnitUncheckedUpdateManyWithoutBusinessUnitNestedInput | No |
| requisitionTemplates | RequisitionTemplateUncheckedUpdateManyWithoutBusinessUnitNestedInput | No |
| requisitions | RequisitionUncheckedUpdateManyWithoutFromBUNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserRoleAssignmentWhereUniqueInput | No |
| update | UserRoleAssignmentUpdateWithoutRoleInput | UserRoleAssignmentUncheckedUpdateWithoutRoleInput | No |
| create | UserRoleAssignmentCreateWithoutRoleInput | UserRoleAssignmentUncheckedCreateWithoutRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserRoleAssignmentWhereUniqueInput | No |
| data | UserRoleAssignmentUpdateWithoutRoleInput | UserRoleAssignmentUncheckedUpdateWithoutRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserRoleAssignmentScalarWhereInput | No |
| data | UserRoleAssignmentUpdateManyMutationInput | UserRoleAssignmentUncheckedUpdateManyWithoutRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TemplateInitiatorAccessWhereUniqueInput | No |
| data | TemplateInitiatorAccessUpdateWithoutRoleInput | TemplateInitiatorAccessUncheckedUpdateWithoutRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TemplateInitiatorAccessScalarWhereInput | No |
| data | TemplateInitiatorAccessUpdateManyMutationInput | TemplateInitiatorAccessUncheckedUpdateManyWithoutRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TemplateInitiatorAccessScalarWhereInput | TemplateInitiatorAccessScalarWhereInput[] | No |
| OR | TemplateInitiatorAccessScalarWhereInput[] | No |
| NOT | TemplateInitiatorAccessScalarWhereInput | TemplateInitiatorAccessScalarWhereInput[] | No |
| templateId | StringFilter | String | No |
| roleId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | ApprovalStepDefinitionWhereUniqueInput | No |
| data | ApprovalStepDefinitionUpdateWithoutApproverRoleInput | ApprovalStepDefinitionUncheckedUpdateWithoutApproverRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ApprovalStepDefinitionScalarWhereInput | No |
| data | ApprovalStepDefinitionUpdateManyMutationInput | ApprovalStepDefinitionUncheckedUpdateManyWithoutApproverRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ApprovalStepDefinitionScalarWhereInput | ApprovalStepDefinitionScalarWhereInput[] | No |
| OR | ApprovalStepDefinitionScalarWhereInput[] | No |
| NOT | ApprovalStepDefinitionScalarWhereInput | ApprovalStepDefinitionScalarWhereInput[] | No |
| id | StringFilter | String | No |
| workflowId | StringFilter | String | No |
| stepNumber | IntFilter | Int | No |
| approverRoleId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutRoleAssignmentsInput | UserUncheckedCreateWithoutRoleAssignmentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| scope | RoleScope | No |
| isBUAdmin | Boolean | No |
| businessUnit | BusinessUnitCreateNestedOneWithoutRolesInput | No |
| accessibleTemplates | TemplateInitiatorAccessCreateNestedManyWithoutRoleInput | No |
| approvalStepDefinitions | ApprovalStepDefinitionCreateNestedManyWithoutApproverRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| scope | RoleScope | No |
| isBUAdmin | Boolean | No |
| businessUnitId | String | Null | Yes |
| accessibleTemplates | TemplateInitiatorAccessUncheckedCreateNestedManyWithoutRoleInput | No |
| approvalStepDefinitions | ApprovalStepDefinitionUncheckedCreateNestedManyWithoutApproverRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RoleWhereUniqueInput | No |
| create | RoleCreateWithoutUserAssignmentsInput | RoleUncheckedCreateWithoutUserAssignmentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutRoleAssignmentsInput | UserUncheckedUpdateWithoutRoleAssignmentsInput | No |
| create | UserCreateWithoutRoleAssignmentsInput | UserUncheckedCreateWithoutRoleAssignmentsInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutRoleAssignmentsInput | UserUncheckedUpdateWithoutRoleAssignmentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | RoleUpdateWithoutUserAssignmentsInput | RoleUncheckedUpdateWithoutUserAssignmentsInput | No |
| create | RoleCreateWithoutUserAssignmentsInput | RoleUncheckedCreateWithoutUserAssignmentsInput | No |
| where | RoleWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RoleWhereInput | No |
| data | RoleUpdateWithoutUserAssignmentsInput | RoleUncheckedUpdateWithoutUserAssignmentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| scope | RoleScope | EnumRoleScopeFieldUpdateOperationsInput | No |
| isBUAdmin | Boolean | BoolFieldUpdateOperationsInput | No |
| businessUnit | BusinessUnitUpdateOneWithoutRolesNestedInput | No |
| accessibleTemplates | TemplateInitiatorAccessUpdateManyWithoutRoleNestedInput | No |
| approvalStepDefinitions | ApprovalStepDefinitionUpdateManyWithoutApproverRoleNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| scope | RoleScope | EnumRoleScopeFieldUpdateOperationsInput | No |
| isBUAdmin | Boolean | BoolFieldUpdateOperationsInput | No |
| businessUnitId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| accessibleTemplates | TemplateInitiatorAccessUncheckedUpdateManyWithoutRoleNestedInput | No |
| approvalStepDefinitions | ApprovalStepDefinitionUncheckedUpdateManyWithoutApproverRoleNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| head | UserCreateNestedOneWithoutHeadedBusinessUnitInput | No |
| members | UserBusinessUnitCreateNestedManyWithoutBusinessUnitInput | No |
| roles | RoleCreateNestedManyWithoutBusinessUnitInput | No |
| requisitions | RequisitionCreateNestedManyWithoutFromBUInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| headId | String | No |
| members | UserBusinessUnitUncheckedCreateNestedManyWithoutBusinessUnitInput | No |
| roles | RoleUncheckedCreateNestedManyWithoutBusinessUnitInput | No |
| requisitions | RequisitionUncheckedCreateNestedManyWithoutFromBUInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BusinessUnitWhereUniqueInput | No |
| create | BusinessUnitCreateWithoutRequisitionTemplatesInput | BusinessUnitUncheckedCreateWithoutRequisitionTemplatesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| label | String | No |
| fieldType | FieldType | No |
| isRequired | Boolean | No |
| placeholder | String | Null | Yes |
| order | Int | No |
| options | FieldOptionCreateNestedManyWithoutFieldInput | No |
| listColumns | TemplateFieldCreateNestedManyWithoutParentListFieldInput | No |
| parentListField | TemplateFieldCreateNestedOneWithoutListColumnsInput | No |
| submittedValues | RequisitionValueCreateNestedManyWithoutTemplateFieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| label | String | No |
| fieldType | FieldType | No |
| isRequired | Boolean | No |
| placeholder | String | Null | Yes |
| order | Int | No |
| parentListFieldId | String | Null | Yes |
| options | FieldOptionUncheckedCreateNestedManyWithoutFieldInput | No |
| listColumns | TemplateFieldUncheckedCreateNestedManyWithoutParentListFieldInput | No |
| submittedValues | RequisitionValueUncheckedCreateNestedManyWithoutTemplateFieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TemplateFieldWhereUniqueInput | No |
| create | TemplateFieldCreateWithoutTemplateInput | TemplateFieldUncheckedCreateWithoutTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | TemplateFieldCreateManyTemplateInput | TemplateFieldCreateManyTemplateInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| role | RoleCreateNestedOneWithoutAccessibleTemplatesInput | No |
| Name | Type | Nullable |
|---|---|---|
| roleId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | TemplateInitiatorAccessWhereUniqueInput | No |
| create | TemplateInitiatorAccessCreateWithoutTemplateInput | TemplateInitiatorAccessUncheckedCreateWithoutTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | TemplateInitiatorAccessCreateManyTemplateInput | TemplateInitiatorAccessCreateManyTemplateInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| steps | ApprovalStepDefinitionCreateNestedManyWithoutWorkflowInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| steps | ApprovalStepDefinitionUncheckedCreateNestedManyWithoutWorkflowInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ApprovalWorkflowWhereUniqueInput | No |
| create | ApprovalWorkflowCreateWithoutTemplatesInput | ApprovalWorkflowUncheckedCreateWithoutTemplatesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| overallStatus | RequisitionStatus | No |
| initiator | UserCreateNestedOneWithoutInitiatedRequisitionsInput | No |
| fromBU | BusinessUnitCreateNestedOneWithoutRequisitionsInput | No |
| approvalHistory | RequisitionApprovalCreateNestedManyWithoutRequisitionInput | No |
| submittedValues | RequisitionValueCreateNestedManyWithoutRequisitionInput | No |
| attachments | AttachmentCreateNestedManyWithoutRequisitionInput | No |
| actionLog | CommentCreateNestedManyWithoutRequisitionInput | No |
| notifications | NotificationCreateNestedManyWithoutRequisitionInput | No |
| tags | RequisitionTagCreateNestedManyWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| initiatorId | String | No |
| businessUnitId | String | No |
| overallStatus | RequisitionStatus | No |
| approvalHistory | RequisitionApprovalUncheckedCreateNestedManyWithoutRequisitionInput | No |
| submittedValues | RequisitionValueUncheckedCreateNestedManyWithoutRequisitionInput | No |
| attachments | AttachmentUncheckedCreateNestedManyWithoutRequisitionInput | No |
| actionLog | CommentUncheckedCreateNestedManyWithoutRequisitionInput | No |
| notifications | NotificationUncheckedCreateNestedManyWithoutRequisitionInput | No |
| tags | RequisitionTagUncheckedCreateNestedManyWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionWhereUniqueInput | No |
| create | RequisitionCreateWithoutTemplateInput | RequisitionUncheckedCreateWithoutTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | RequisitionCreateManyTemplateInput | RequisitionCreateManyTemplateInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | BusinessUnitWhereInput | No |
| data | BusinessUnitUpdateWithoutRequisitionTemplatesInput | BusinessUnitUncheckedUpdateWithoutRequisitionTemplatesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| head | UserUpdateOneRequiredWithoutHeadedBusinessUnitNestedInput | No |
| members | UserBusinessUnitUpdateManyWithoutBusinessUnitNestedInput | No |
| roles | RoleUpdateManyWithoutBusinessUnitNestedInput | No |
| requisitions | RequisitionUpdateManyWithoutFromBUNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| headId | String | StringFieldUpdateOperationsInput | No |
| members | UserBusinessUnitUncheckedUpdateManyWithoutBusinessUnitNestedInput | No |
| roles | RoleUncheckedUpdateManyWithoutBusinessUnitNestedInput | No |
| requisitions | RequisitionUncheckedUpdateManyWithoutFromBUNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TemplateFieldWhereUniqueInput | No |
| update | TemplateFieldUpdateWithoutTemplateInput | TemplateFieldUncheckedUpdateWithoutTemplateInput | No |
| create | TemplateFieldCreateWithoutTemplateInput | TemplateFieldUncheckedCreateWithoutTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TemplateFieldWhereUniqueInput | No |
| data | TemplateFieldUpdateWithoutTemplateInput | TemplateFieldUncheckedUpdateWithoutTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TemplateFieldScalarWhereInput | No |
| data | TemplateFieldUpdateManyMutationInput | TemplateFieldUncheckedUpdateManyWithoutTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TemplateFieldScalarWhereInput | TemplateFieldScalarWhereInput[] | No |
| OR | TemplateFieldScalarWhereInput[] | No |
| NOT | TemplateFieldScalarWhereInput | TemplateFieldScalarWhereInput[] | No |
| id | StringFilter | String | No |
| templateId | StringFilter | String | No |
| label | StringFilter | String | No |
| fieldType | EnumFieldTypeFilter | FieldType | No |
| isRequired | BoolFilter | Boolean | No |
| placeholder | StringNullableFilter | String | Null | Yes |
| order | IntFilter | Int | No |
| parentListFieldId | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | TemplateInitiatorAccessWhereUniqueInput | No |
| data | TemplateInitiatorAccessUpdateWithoutTemplateInput | TemplateInitiatorAccessUncheckedUpdateWithoutTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TemplateInitiatorAccessScalarWhereInput | No |
| data | TemplateInitiatorAccessUpdateManyMutationInput | TemplateInitiatorAccessUncheckedUpdateManyWithoutTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ApprovalWorkflowUpdateWithoutTemplatesInput | ApprovalWorkflowUncheckedUpdateWithoutTemplatesInput | No |
| create | ApprovalWorkflowCreateWithoutTemplatesInput | ApprovalWorkflowUncheckedCreateWithoutTemplatesInput | No |
| where | ApprovalWorkflowWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ApprovalWorkflowWhereInput | No |
| data | ApprovalWorkflowUpdateWithoutTemplatesInput | ApprovalWorkflowUncheckedUpdateWithoutTemplatesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| steps | ApprovalStepDefinitionUpdateManyWithoutWorkflowNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| steps | ApprovalStepDefinitionUncheckedUpdateManyWithoutWorkflowNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionWhereUniqueInput | No |
| update | RequisitionUpdateWithoutTemplateInput | RequisitionUncheckedUpdateWithoutTemplateInput | No |
| create | RequisitionCreateWithoutTemplateInput | RequisitionUncheckedCreateWithoutTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionWhereUniqueInput | No |
| data | RequisitionUpdateWithoutTemplateInput | RequisitionUncheckedUpdateWithoutTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionScalarWhereInput | No |
| data | RequisitionUpdateManyMutationInput | RequisitionUncheckedUpdateManyWithoutTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| description | String | Null | Yes |
| businessUnit | BusinessUnitCreateNestedOneWithoutRequisitionTemplatesInput | No |
| initiatorAccess | TemplateInitiatorAccessCreateNestedManyWithoutTemplateInput | No |
| approvalWorkflow | ApprovalWorkflowCreateNestedOneWithoutTemplatesInput | No |
| requisitions | RequisitionCreateNestedManyWithoutTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| description | String | Null | Yes |
| businessUnitId | String | No |
| approvalWorkflowId | String | Null | Yes |
| initiatorAccess | TemplateInitiatorAccessUncheckedCreateNestedManyWithoutTemplateInput | No |
| requisitions | RequisitionUncheckedCreateNestedManyWithoutTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionTemplateWhereUniqueInput | No |
| create | RequisitionTemplateCreateWithoutFieldsInput | RequisitionTemplateUncheckedCreateWithoutFieldsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| label | String | No |
| value | String | No |
| order | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| label | String | No |
| value | String | No |
| order | Int | No |
| Name | Type | Nullable |
|---|---|---|
| where | FieldOptionWhereUniqueInput | No |
| create | FieldOptionCreateWithoutFieldInput | FieldOptionUncheckedCreateWithoutFieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | FieldOptionCreateManyFieldInput | FieldOptionCreateManyFieldInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| label | String | No |
| fieldType | FieldType | No |
| isRequired | Boolean | No |
| placeholder | String | Null | Yes |
| order | Int | No |
| template | RequisitionTemplateCreateNestedOneWithoutFieldsInput | No |
| options | FieldOptionCreateNestedManyWithoutFieldInput | No |
| listColumns | TemplateFieldCreateNestedManyWithoutParentListFieldInput | No |
| submittedValues | RequisitionValueCreateNestedManyWithoutTemplateFieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| templateId | String | No |
| label | String | No |
| fieldType | FieldType | No |
| isRequired | Boolean | No |
| placeholder | String | Null | Yes |
| order | Int | No |
| options | FieldOptionUncheckedCreateNestedManyWithoutFieldInput | No |
| listColumns | TemplateFieldUncheckedCreateNestedManyWithoutParentListFieldInput | No |
| submittedValues | RequisitionValueUncheckedCreateNestedManyWithoutTemplateFieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TemplateFieldWhereUniqueInput | No |
| create | TemplateFieldCreateWithoutParentListFieldInput | TemplateFieldUncheckedCreateWithoutParentListFieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | TemplateFieldCreateManyParentListFieldInput | TemplateFieldCreateManyParentListFieldInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| label | String | No |
| fieldType | FieldType | No |
| isRequired | Boolean | No |
| placeholder | String | Null | Yes |
| order | Int | No |
| template | RequisitionTemplateCreateNestedOneWithoutFieldsInput | No |
| options | FieldOptionCreateNestedManyWithoutFieldInput | No |
| parentListField | TemplateFieldCreateNestedOneWithoutListColumnsInput | No |
| submittedValues | RequisitionValueCreateNestedManyWithoutTemplateFieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| templateId | String | No |
| label | String | No |
| fieldType | FieldType | No |
| isRequired | Boolean | No |
| placeholder | String | Null | Yes |
| order | Int | No |
| parentListFieldId | String | Null | Yes |
| options | FieldOptionUncheckedCreateNestedManyWithoutFieldInput | No |
| submittedValues | RequisitionValueUncheckedCreateNestedManyWithoutTemplateFieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TemplateFieldWhereUniqueInput | No |
| create | TemplateFieldCreateWithoutListColumnsInput | TemplateFieldUncheckedCreateWithoutListColumnsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| value | String | No |
| rowIndex | Int | Null | Yes |
| requisition | RequisitionCreateNestedOneWithoutSubmittedValuesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| requisitionId | String | No |
| value | String | No |
| rowIndex | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionValueWhereUniqueInput | No |
| create | RequisitionValueCreateWithoutTemplateFieldInput | RequisitionValueUncheckedCreateWithoutTemplateFieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | RequisitionValueCreateManyTemplateFieldInput | RequisitionValueCreateManyTemplateFieldInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | RequisitionTemplateUpdateWithoutFieldsInput | RequisitionTemplateUncheckedUpdateWithoutFieldsInput | No |
| create | RequisitionTemplateCreateWithoutFieldsInput | RequisitionTemplateUncheckedCreateWithoutFieldsInput | No |
| where | RequisitionTemplateWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionTemplateWhereInput | No |
| data | RequisitionTemplateUpdateWithoutFieldsInput | RequisitionTemplateUncheckedUpdateWithoutFieldsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| businessUnit | BusinessUnitUpdateOneRequiredWithoutRequisitionTemplatesNestedInput | No |
| initiatorAccess | TemplateInitiatorAccessUpdateManyWithoutTemplateNestedInput | No |
| approvalWorkflow | ApprovalWorkflowUpdateOneWithoutTemplatesNestedInput | No |
| requisitions | RequisitionUpdateManyWithoutTemplateNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| businessUnitId | String | StringFieldUpdateOperationsInput | No |
| approvalWorkflowId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| initiatorAccess | TemplateInitiatorAccessUncheckedUpdateManyWithoutTemplateNestedInput | No |
| requisitions | RequisitionUncheckedUpdateManyWithoutTemplateNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FieldOptionWhereUniqueInput | No |
| update | FieldOptionUpdateWithoutFieldInput | FieldOptionUncheckedUpdateWithoutFieldInput | No |
| create | FieldOptionCreateWithoutFieldInput | FieldOptionUncheckedCreateWithoutFieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FieldOptionWhereUniqueInput | No |
| data | FieldOptionUpdateWithoutFieldInput | FieldOptionUncheckedUpdateWithoutFieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FieldOptionScalarWhereInput | No |
| data | FieldOptionUpdateManyMutationInput | FieldOptionUncheckedUpdateManyWithoutFieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FieldOptionScalarWhereInput | FieldOptionScalarWhereInput[] | No |
| OR | FieldOptionScalarWhereInput[] | No |
| NOT | FieldOptionScalarWhereInput | FieldOptionScalarWhereInput[] | No |
| id | StringFilter | String | No |
| fieldId | StringFilter | String | No |
| label | StringFilter | String | No |
| value | StringFilter | String | No |
| order | IntFilter | Int | No |
| Name | Type | Nullable |
|---|---|---|
| where | TemplateFieldWhereUniqueInput | No |
| data | TemplateFieldUpdateWithoutParentListFieldInput | TemplateFieldUncheckedUpdateWithoutParentListFieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TemplateFieldScalarWhereInput | No |
| data | TemplateFieldUpdateManyMutationInput | TemplateFieldUncheckedUpdateManyWithoutParentListFieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | TemplateFieldUpdateWithoutListColumnsInput | TemplateFieldUncheckedUpdateWithoutListColumnsInput | No |
| create | TemplateFieldCreateWithoutListColumnsInput | TemplateFieldUncheckedCreateWithoutListColumnsInput | No |
| where | TemplateFieldWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TemplateFieldWhereInput | No |
| data | TemplateFieldUpdateWithoutListColumnsInput | TemplateFieldUncheckedUpdateWithoutListColumnsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| label | String | StringFieldUpdateOperationsInput | No |
| fieldType | FieldType | EnumFieldTypeFieldUpdateOperationsInput | No |
| isRequired | Boolean | BoolFieldUpdateOperationsInput | No |
| placeholder | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| order | Int | IntFieldUpdateOperationsInput | No |
| template | RequisitionTemplateUpdateOneRequiredWithoutFieldsNestedInput | No |
| options | FieldOptionUpdateManyWithoutFieldNestedInput | No |
| parentListField | TemplateFieldUpdateOneWithoutListColumnsNestedInput | No |
| submittedValues | RequisitionValueUpdateManyWithoutTemplateFieldNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| templateId | String | StringFieldUpdateOperationsInput | No |
| label | String | StringFieldUpdateOperationsInput | No |
| fieldType | FieldType | EnumFieldTypeFieldUpdateOperationsInput | No |
| isRequired | Boolean | BoolFieldUpdateOperationsInput | No |
| placeholder | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| order | Int | IntFieldUpdateOperationsInput | No |
| parentListFieldId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| options | FieldOptionUncheckedUpdateManyWithoutFieldNestedInput | No |
| submittedValues | RequisitionValueUncheckedUpdateManyWithoutTemplateFieldNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionValueWhereUniqueInput | No |
| data | RequisitionValueUpdateWithoutTemplateFieldInput | RequisitionValueUncheckedUpdateWithoutTemplateFieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionValueScalarWhereInput | No |
| data | RequisitionValueUpdateManyMutationInput | RequisitionValueUncheckedUpdateManyWithoutTemplateFieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RequisitionValueScalarWhereInput | RequisitionValueScalarWhereInput[] | No |
| OR | RequisitionValueScalarWhereInput[] | No |
| NOT | RequisitionValueScalarWhereInput | RequisitionValueScalarWhereInput[] | No |
| id | StringFilter | String | No |
| requisitionId | StringFilter | String | No |
| templateFieldId | StringFilter | String | No |
| value | StringFilter | String | No |
| rowIndex | IntNullableFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| label | String | No |
| fieldType | FieldType | No |
| isRequired | Boolean | No |
| placeholder | String | Null | Yes |
| order | Int | No |
| template | RequisitionTemplateCreateNestedOneWithoutFieldsInput | No |
| listColumns | TemplateFieldCreateNestedManyWithoutParentListFieldInput | No |
| parentListField | TemplateFieldCreateNestedOneWithoutListColumnsInput | No |
| submittedValues | RequisitionValueCreateNestedManyWithoutTemplateFieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| templateId | String | No |
| label | String | No |
| fieldType | FieldType | No |
| isRequired | Boolean | No |
| placeholder | String | Null | Yes |
| order | Int | No |
| parentListFieldId | String | Null | Yes |
| listColumns | TemplateFieldUncheckedCreateNestedManyWithoutParentListFieldInput | No |
| submittedValues | RequisitionValueUncheckedCreateNestedManyWithoutTemplateFieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TemplateFieldWhereUniqueInput | No |
| create | TemplateFieldCreateWithoutOptionsInput | TemplateFieldUncheckedCreateWithoutOptionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | TemplateFieldUpdateWithoutOptionsInput | TemplateFieldUncheckedUpdateWithoutOptionsInput | No |
| create | TemplateFieldCreateWithoutOptionsInput | TemplateFieldUncheckedCreateWithoutOptionsInput | No |
| where | TemplateFieldWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TemplateFieldWhereInput | No |
| data | TemplateFieldUpdateWithoutOptionsInput | TemplateFieldUncheckedUpdateWithoutOptionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| label | String | StringFieldUpdateOperationsInput | No |
| fieldType | FieldType | EnumFieldTypeFieldUpdateOperationsInput | No |
| isRequired | Boolean | BoolFieldUpdateOperationsInput | No |
| placeholder | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| order | Int | IntFieldUpdateOperationsInput | No |
| template | RequisitionTemplateUpdateOneRequiredWithoutFieldsNestedInput | No |
| listColumns | TemplateFieldUpdateManyWithoutParentListFieldNestedInput | No |
| parentListField | TemplateFieldUpdateOneWithoutListColumnsNestedInput | No |
| submittedValues | RequisitionValueUpdateManyWithoutTemplateFieldNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| templateId | String | StringFieldUpdateOperationsInput | No |
| label | String | StringFieldUpdateOperationsInput | No |
| fieldType | FieldType | EnumFieldTypeFieldUpdateOperationsInput | No |
| isRequired | Boolean | BoolFieldUpdateOperationsInput | No |
| placeholder | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| order | Int | IntFieldUpdateOperationsInput | No |
| parentListFieldId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| listColumns | TemplateFieldUncheckedUpdateManyWithoutParentListFieldNestedInput | No |
| submittedValues | RequisitionValueUncheckedUpdateManyWithoutTemplateFieldNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| description | String | Null | Yes |
| businessUnit | BusinessUnitCreateNestedOneWithoutRequisitionTemplatesInput | No |
| fields | TemplateFieldCreateNestedManyWithoutTemplateInput | No |
| approvalWorkflow | ApprovalWorkflowCreateNestedOneWithoutTemplatesInput | No |
| requisitions | RequisitionCreateNestedManyWithoutTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| description | String | Null | Yes |
| businessUnitId | String | No |
| approvalWorkflowId | String | Null | Yes |
| fields | TemplateFieldUncheckedCreateNestedManyWithoutTemplateInput | No |
| requisitions | RequisitionUncheckedCreateNestedManyWithoutTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionTemplateWhereUniqueInput | No |
| create | RequisitionTemplateCreateWithoutInitiatorAccessInput | RequisitionTemplateUncheckedCreateWithoutInitiatorAccessInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| scope | RoleScope | No |
| isBUAdmin | Boolean | No |
| businessUnit | BusinessUnitCreateNestedOneWithoutRolesInput | No |
| userAssignments | UserRoleAssignmentCreateNestedManyWithoutRoleInput | No |
| approvalStepDefinitions | ApprovalStepDefinitionCreateNestedManyWithoutApproverRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| scope | RoleScope | No |
| isBUAdmin | Boolean | No |
| businessUnitId | String | Null | Yes |
| userAssignments | UserRoleAssignmentUncheckedCreateNestedManyWithoutRoleInput | No |
| approvalStepDefinitions | ApprovalStepDefinitionUncheckedCreateNestedManyWithoutApproverRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RoleWhereUniqueInput | No |
| create | RoleCreateWithoutAccessibleTemplatesInput | RoleUncheckedCreateWithoutAccessibleTemplatesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionTemplateWhereInput | No |
| data | RequisitionTemplateUpdateWithoutInitiatorAccessInput | RequisitionTemplateUncheckedUpdateWithoutInitiatorAccessInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| businessUnit | BusinessUnitUpdateOneRequiredWithoutRequisitionTemplatesNestedInput | No |
| fields | TemplateFieldUpdateManyWithoutTemplateNestedInput | No |
| approvalWorkflow | ApprovalWorkflowUpdateOneWithoutTemplatesNestedInput | No |
| requisitions | RequisitionUpdateManyWithoutTemplateNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| businessUnitId | String | StringFieldUpdateOperationsInput | No |
| approvalWorkflowId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| fields | TemplateFieldUncheckedUpdateManyWithoutTemplateNestedInput | No |
| requisitions | RequisitionUncheckedUpdateManyWithoutTemplateNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | RoleUpdateWithoutAccessibleTemplatesInput | RoleUncheckedUpdateWithoutAccessibleTemplatesInput | No |
| create | RoleCreateWithoutAccessibleTemplatesInput | RoleUncheckedCreateWithoutAccessibleTemplatesInput | No |
| where | RoleWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RoleWhereInput | No |
| data | RoleUpdateWithoutAccessibleTemplatesInput | RoleUncheckedUpdateWithoutAccessibleTemplatesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| scope | RoleScope | EnumRoleScopeFieldUpdateOperationsInput | No |
| isBUAdmin | Boolean | BoolFieldUpdateOperationsInput | No |
| businessUnit | BusinessUnitUpdateOneWithoutRolesNestedInput | No |
| userAssignments | UserRoleAssignmentUpdateManyWithoutRoleNestedInput | No |
| approvalStepDefinitions | ApprovalStepDefinitionUpdateManyWithoutApproverRoleNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| scope | RoleScope | EnumRoleScopeFieldUpdateOperationsInput | No |
| isBUAdmin | Boolean | BoolFieldUpdateOperationsInput | No |
| businessUnitId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| userAssignments | UserRoleAssignmentUncheckedUpdateManyWithoutRoleNestedInput | No |
| approvalStepDefinitions | ApprovalStepDefinitionUncheckedUpdateManyWithoutApproverRoleNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| stepNumber | Int | No |
| approverRole | RoleCreateNestedOneWithoutApprovalStepDefinitionsInput | No |
| requisitionApprovals | RequisitionApprovalCreateNestedManyWithoutStepDefinitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| stepNumber | Int | No |
| approverRoleId | String | No |
| requisitionApprovals | RequisitionApprovalUncheckedCreateNestedManyWithoutStepDefinitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ApprovalStepDefinitionWhereUniqueInput | No |
| create | ApprovalStepDefinitionCreateWithoutWorkflowInput | ApprovalStepDefinitionUncheckedCreateWithoutWorkflowInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ApprovalStepDefinitionCreateManyWorkflowInput | ApprovalStepDefinitionCreateManyWorkflowInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| description | String | Null | Yes |
| businessUnit | BusinessUnitCreateNestedOneWithoutRequisitionTemplatesInput | No |
| fields | TemplateFieldCreateNestedManyWithoutTemplateInput | No |
| initiatorAccess | TemplateInitiatorAccessCreateNestedManyWithoutTemplateInput | No |
| requisitions | RequisitionCreateNestedManyWithoutTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| description | String | Null | Yes |
| businessUnitId | String | No |
| fields | TemplateFieldUncheckedCreateNestedManyWithoutTemplateInput | No |
| initiatorAccess | TemplateInitiatorAccessUncheckedCreateNestedManyWithoutTemplateInput | No |
| requisitions | RequisitionUncheckedCreateNestedManyWithoutTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionTemplateWhereUniqueInput | No |
| create | RequisitionTemplateCreateWithoutApprovalWorkflowInput | RequisitionTemplateUncheckedCreateWithoutApprovalWorkflowInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | RequisitionTemplateCreateManyApprovalWorkflowInput | RequisitionTemplateCreateManyApprovalWorkflowInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | ApprovalStepDefinitionWhereUniqueInput | No |
| data | ApprovalStepDefinitionUpdateWithoutWorkflowInput | ApprovalStepDefinitionUncheckedUpdateWithoutWorkflowInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ApprovalStepDefinitionScalarWhereInput | No |
| data | ApprovalStepDefinitionUpdateManyMutationInput | ApprovalStepDefinitionUncheckedUpdateManyWithoutWorkflowInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionTemplateWhereUniqueInput | No |
| data | RequisitionTemplateUpdateWithoutApprovalWorkflowInput | RequisitionTemplateUncheckedUpdateWithoutApprovalWorkflowInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionTemplateScalarWhereInput | No |
| data | RequisitionTemplateUpdateManyMutationInput | RequisitionTemplateUncheckedUpdateManyWithoutApprovalWorkflowInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| templates | RequisitionTemplateCreateNestedManyWithoutApprovalWorkflowInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| templates | RequisitionTemplateUncheckedCreateNestedManyWithoutApprovalWorkflowInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ApprovalWorkflowWhereUniqueInput | No |
| create | ApprovalWorkflowCreateWithoutStepsInput | ApprovalWorkflowUncheckedCreateWithoutStepsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| scope | RoleScope | No |
| isBUAdmin | Boolean | No |
| businessUnit | BusinessUnitCreateNestedOneWithoutRolesInput | No |
| userAssignments | UserRoleAssignmentCreateNestedManyWithoutRoleInput | No |
| accessibleTemplates | TemplateInitiatorAccessCreateNestedManyWithoutRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| scope | RoleScope | No |
| isBUAdmin | Boolean | No |
| businessUnitId | String | Null | Yes |
| userAssignments | UserRoleAssignmentUncheckedCreateNestedManyWithoutRoleInput | No |
| accessibleTemplates | TemplateInitiatorAccessUncheckedCreateNestedManyWithoutRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RoleWhereUniqueInput | No |
| create | RoleCreateWithoutApprovalStepDefinitionsInput | RoleUncheckedCreateWithoutApprovalStepDefinitionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| status | ApprovalStatus | No |
| actionedAt | DateTime | Null | Yes |
| requisition | RequisitionCreateNestedOneWithoutApprovalHistoryInput | No |
| approver | UserCreateNestedOneWithoutAssignedApprovalsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| requisitionId | String | No |
| approverId | String | Null | Yes |
| status | ApprovalStatus | No |
| actionedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionApprovalWhereUniqueInput | No |
| create | RequisitionApprovalCreateWithoutStepDefinitionInput | RequisitionApprovalUncheckedCreateWithoutStepDefinitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | RequisitionApprovalCreateManyStepDefinitionInput | RequisitionApprovalCreateManyStepDefinitionInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | ApprovalWorkflowUpdateWithoutStepsInput | ApprovalWorkflowUncheckedUpdateWithoutStepsInput | No |
| create | ApprovalWorkflowCreateWithoutStepsInput | ApprovalWorkflowUncheckedCreateWithoutStepsInput | No |
| where | ApprovalWorkflowWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ApprovalWorkflowWhereInput | No |
| data | ApprovalWorkflowUpdateWithoutStepsInput | ApprovalWorkflowUncheckedUpdateWithoutStepsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| templates | RequisitionTemplateUpdateManyWithoutApprovalWorkflowNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| templates | RequisitionTemplateUncheckedUpdateManyWithoutApprovalWorkflowNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | RoleUpdateWithoutApprovalStepDefinitionsInput | RoleUncheckedUpdateWithoutApprovalStepDefinitionsInput | No |
| create | RoleCreateWithoutApprovalStepDefinitionsInput | RoleUncheckedCreateWithoutApprovalStepDefinitionsInput | No |
| where | RoleWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RoleWhereInput | No |
| data | RoleUpdateWithoutApprovalStepDefinitionsInput | RoleUncheckedUpdateWithoutApprovalStepDefinitionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| scope | RoleScope | EnumRoleScopeFieldUpdateOperationsInput | No |
| isBUAdmin | Boolean | BoolFieldUpdateOperationsInput | No |
| businessUnit | BusinessUnitUpdateOneWithoutRolesNestedInput | No |
| userAssignments | UserRoleAssignmentUpdateManyWithoutRoleNestedInput | No |
| accessibleTemplates | TemplateInitiatorAccessUpdateManyWithoutRoleNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| scope | RoleScope | EnumRoleScopeFieldUpdateOperationsInput | No |
| isBUAdmin | Boolean | BoolFieldUpdateOperationsInput | No |
| businessUnitId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| userAssignments | UserRoleAssignmentUncheckedUpdateManyWithoutRoleNestedInput | No |
| accessibleTemplates | TemplateInitiatorAccessUncheckedUpdateManyWithoutRoleNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionApprovalWhereUniqueInput | No |
| data | RequisitionApprovalUpdateWithoutStepDefinitionInput | RequisitionApprovalUncheckedUpdateWithoutStepDefinitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionApprovalScalarWhereInput | No |
| data | RequisitionApprovalUpdateManyMutationInput | RequisitionApprovalUncheckedUpdateManyWithoutStepDefinitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutInitiatedRequisitionsInput | UserUncheckedCreateWithoutInitiatedRequisitionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| head | UserCreateNestedOneWithoutHeadedBusinessUnitInput | No |
| members | UserBusinessUnitCreateNestedManyWithoutBusinessUnitInput | No |
| roles | RoleCreateNestedManyWithoutBusinessUnitInput | No |
| requisitionTemplates | RequisitionTemplateCreateNestedManyWithoutBusinessUnitInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| headId | String | No |
| members | UserBusinessUnitUncheckedCreateNestedManyWithoutBusinessUnitInput | No |
| roles | RoleUncheckedCreateNestedManyWithoutBusinessUnitInput | No |
| requisitionTemplates | RequisitionTemplateUncheckedCreateNestedManyWithoutBusinessUnitInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BusinessUnitWhereUniqueInput | No |
| create | BusinessUnitCreateWithoutRequisitionsInput | BusinessUnitUncheckedCreateWithoutRequisitionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| description | String | Null | Yes |
| businessUnit | BusinessUnitCreateNestedOneWithoutRequisitionTemplatesInput | No |
| fields | TemplateFieldCreateNestedManyWithoutTemplateInput | No |
| initiatorAccess | TemplateInitiatorAccessCreateNestedManyWithoutTemplateInput | No |
| approvalWorkflow | ApprovalWorkflowCreateNestedOneWithoutTemplatesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| description | String | Null | Yes |
| businessUnitId | String | No |
| approvalWorkflowId | String | Null | Yes |
| fields | TemplateFieldUncheckedCreateNestedManyWithoutTemplateInput | No |
| initiatorAccess | TemplateInitiatorAccessUncheckedCreateNestedManyWithoutTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionTemplateWhereUniqueInput | No |
| create | RequisitionTemplateCreateWithoutRequisitionsInput | RequisitionTemplateUncheckedCreateWithoutRequisitionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| status | ApprovalStatus | No |
| actionedAt | DateTime | Null | Yes |
| stepDefinition | ApprovalStepDefinitionCreateNestedOneWithoutRequisitionApprovalsInput | No |
| approver | UserCreateNestedOneWithoutAssignedApprovalsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| stepDefinitionId | String | No |
| approverId | String | Null | Yes |
| status | ApprovalStatus | No |
| actionedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionApprovalWhereUniqueInput | No |
| create | RequisitionApprovalCreateWithoutRequisitionInput | RequisitionApprovalUncheckedCreateWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | RequisitionApprovalCreateManyRequisitionInput | RequisitionApprovalCreateManyRequisitionInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| value | String | No |
| rowIndex | Int | Null | Yes |
| templateField | TemplateFieldCreateNestedOneWithoutSubmittedValuesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| templateFieldId | String | No |
| value | String | No |
| rowIndex | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionValueWhereUniqueInput | No |
| create | RequisitionValueCreateWithoutRequisitionInput | RequisitionValueUncheckedCreateWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | RequisitionValueCreateManyRequisitionInput | RequisitionValueCreateManyRequisitionInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| url | String | No |
| filename | String | No |
| filetype | String | No |
| size | Int | Null | Yes |
| uploader | UserCreateNestedOneWithoutUploadedAttachmentsInput | No |
| comment | CommentCreateNestedOneWithoutAttachmentsInput | No |
| chatMessage | ChatMessageCreateNestedOneWithoutAttachmentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| url | String | No |
| filename | String | No |
| filetype | String | No |
| size | Int | Null | Yes |
| uploaderId | String | No |
| commentId | String | Null | Yes |
| chatMessageId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | AttachmentWhereUniqueInput | No |
| create | AttachmentCreateWithoutRequisitionInput | AttachmentUncheckedCreateWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | AttachmentCreateManyRequisitionInput | AttachmentCreateManyRequisitionInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| content | String | No |
| action | ActionType | No |
| author | UserCreateNestedOneWithoutCommentsInput | No |
| attachments | AttachmentCreateNestedManyWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| content | String | No |
| action | ActionType | No |
| authorId | String | No |
| attachments | AttachmentUncheckedCreateNestedManyWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentWhereUniqueInput | No |
| create | CommentCreateWithoutRequisitionInput | CommentUncheckedCreateWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | CommentCreateManyRequisitionInput | CommentCreateManyRequisitionInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| message | String | No |
| isRead | Boolean | No |
| recipient | UserCreateNestedOneWithoutNotificationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| message | String | No |
| isRead | Boolean | No |
| recipientId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | NotificationWhereUniqueInput | No |
| create | NotificationCreateWithoutRequisitionInput | NotificationUncheckedCreateWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | NotificationCreateManyRequisitionInput | NotificationCreateManyRequisitionInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| assignedAt | DateTime | No |
| tag | TagCreateNestedOneWithoutRequisitionsInput | No |
| assignedBy | UserCreateNestedOneWithoutTaggedRequisitionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| tagId | String | No |
| assignedById | String | No |
| assignedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionTagWhereUniqueInput | No |
| create | RequisitionTagCreateWithoutRequisitionInput | RequisitionTagUncheckedCreateWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | RequisitionTagCreateManyRequisitionInput | RequisitionTagCreateManyRequisitionInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutInitiatedRequisitionsInput | UserUncheckedUpdateWithoutInitiatedRequisitionsInput | No |
| create | UserCreateWithoutInitiatedRequisitionsInput | UserUncheckedCreateWithoutInitiatedRequisitionsInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutInitiatedRequisitionsInput | UserUncheckedUpdateWithoutInitiatedRequisitionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | BusinessUnitUpdateWithoutRequisitionsInput | BusinessUnitUncheckedUpdateWithoutRequisitionsInput | No |
| create | BusinessUnitCreateWithoutRequisitionsInput | BusinessUnitUncheckedCreateWithoutRequisitionsInput | No |
| where | BusinessUnitWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BusinessUnitWhereInput | No |
| data | BusinessUnitUpdateWithoutRequisitionsInput | BusinessUnitUncheckedUpdateWithoutRequisitionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| head | UserUpdateOneRequiredWithoutHeadedBusinessUnitNestedInput | No |
| members | UserBusinessUnitUpdateManyWithoutBusinessUnitNestedInput | No |
| roles | RoleUpdateManyWithoutBusinessUnitNestedInput | No |
| requisitionTemplates | RequisitionTemplateUpdateManyWithoutBusinessUnitNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| headId | String | StringFieldUpdateOperationsInput | No |
| members | UserBusinessUnitUncheckedUpdateManyWithoutBusinessUnitNestedInput | No |
| roles | RoleUncheckedUpdateManyWithoutBusinessUnitNestedInput | No |
| requisitionTemplates | RequisitionTemplateUncheckedUpdateManyWithoutBusinessUnitNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionTemplateWhereInput | No |
| data | RequisitionTemplateUpdateWithoutRequisitionsInput | RequisitionTemplateUncheckedUpdateWithoutRequisitionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| businessUnit | BusinessUnitUpdateOneRequiredWithoutRequisitionTemplatesNestedInput | No |
| fields | TemplateFieldUpdateManyWithoutTemplateNestedInput | No |
| initiatorAccess | TemplateInitiatorAccessUpdateManyWithoutTemplateNestedInput | No |
| approvalWorkflow | ApprovalWorkflowUpdateOneWithoutTemplatesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| businessUnitId | String | StringFieldUpdateOperationsInput | No |
| approvalWorkflowId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| fields | TemplateFieldUncheckedUpdateManyWithoutTemplateNestedInput | No |
| initiatorAccess | TemplateInitiatorAccessUncheckedUpdateManyWithoutTemplateNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionApprovalWhereUniqueInput | No |
| data | RequisitionApprovalUpdateWithoutRequisitionInput | RequisitionApprovalUncheckedUpdateWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionApprovalScalarWhereInput | No |
| data | RequisitionApprovalUpdateManyMutationInput | RequisitionApprovalUncheckedUpdateManyWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionValueWhereUniqueInput | No |
| data | RequisitionValueUpdateWithoutRequisitionInput | RequisitionValueUncheckedUpdateWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionValueScalarWhereInput | No |
| data | RequisitionValueUpdateManyMutationInput | RequisitionValueUncheckedUpdateManyWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AttachmentWhereUniqueInput | No |
| update | AttachmentUpdateWithoutRequisitionInput | AttachmentUncheckedUpdateWithoutRequisitionInput | No |
| create | AttachmentCreateWithoutRequisitionInput | AttachmentUncheckedCreateWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AttachmentWhereUniqueInput | No |
| data | AttachmentUpdateWithoutRequisitionInput | AttachmentUncheckedUpdateWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AttachmentScalarWhereInput | No |
| data | AttachmentUpdateManyMutationInput | AttachmentUncheckedUpdateManyWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentWhereUniqueInput | No |
| update | CommentUpdateWithoutRequisitionInput | CommentUncheckedUpdateWithoutRequisitionInput | No |
| create | CommentCreateWithoutRequisitionInput | CommentUncheckedCreateWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentWhereUniqueInput | No |
| data | CommentUpdateWithoutRequisitionInput | CommentUncheckedUpdateWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentScalarWhereInput | No |
| data | CommentUpdateManyMutationInput | CommentUncheckedUpdateManyWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | NotificationWhereUniqueInput | No |
| update | NotificationUpdateWithoutRequisitionInput | NotificationUncheckedUpdateWithoutRequisitionInput | No |
| create | NotificationCreateWithoutRequisitionInput | NotificationUncheckedCreateWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | NotificationWhereUniqueInput | No |
| data | NotificationUpdateWithoutRequisitionInput | NotificationUncheckedUpdateWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | NotificationScalarWhereInput | No |
| data | NotificationUpdateManyMutationInput | NotificationUncheckedUpdateManyWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionTagWhereUniqueInput | No |
| update | RequisitionTagUpdateWithoutRequisitionInput | RequisitionTagUncheckedUpdateWithoutRequisitionInput | No |
| create | RequisitionTagCreateWithoutRequisitionInput | RequisitionTagUncheckedCreateWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionTagWhereUniqueInput | No |
| data | RequisitionTagUpdateWithoutRequisitionInput | RequisitionTagUncheckedUpdateWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionTagScalarWhereInput | No |
| data | RequisitionTagUpdateManyMutationInput | RequisitionTagUncheckedUpdateManyWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| overallStatus | RequisitionStatus | No |
| initiator | UserCreateNestedOneWithoutInitiatedRequisitionsInput | No |
| fromBU | BusinessUnitCreateNestedOneWithoutRequisitionsInput | No |
| template | RequisitionTemplateCreateNestedOneWithoutRequisitionsInput | No |
| submittedValues | RequisitionValueCreateNestedManyWithoutRequisitionInput | No |
| attachments | AttachmentCreateNestedManyWithoutRequisitionInput | No |
| actionLog | CommentCreateNestedManyWithoutRequisitionInput | No |
| notifications | NotificationCreateNestedManyWithoutRequisitionInput | No |
| tags | RequisitionTagCreateNestedManyWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| initiatorId | String | No |
| businessUnitId | String | No |
| templateId | String | No |
| overallStatus | RequisitionStatus | No |
| submittedValues | RequisitionValueUncheckedCreateNestedManyWithoutRequisitionInput | No |
| attachments | AttachmentUncheckedCreateNestedManyWithoutRequisitionInput | No |
| actionLog | CommentUncheckedCreateNestedManyWithoutRequisitionInput | No |
| notifications | NotificationUncheckedCreateNestedManyWithoutRequisitionInput | No |
| tags | RequisitionTagUncheckedCreateNestedManyWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionWhereUniqueInput | No |
| create | RequisitionCreateWithoutApprovalHistoryInput | RequisitionUncheckedCreateWithoutApprovalHistoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| stepNumber | Int | No |
| workflow | ApprovalWorkflowCreateNestedOneWithoutStepsInput | No |
| approverRole | RoleCreateNestedOneWithoutApprovalStepDefinitionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| workflowId | String | No |
| stepNumber | Int | No |
| approverRoleId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | ApprovalStepDefinitionWhereUniqueInput | No |
| create | ApprovalStepDefinitionCreateWithoutRequisitionApprovalsInput | ApprovalStepDefinitionUncheckedCreateWithoutRequisitionApprovalsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutAssignedApprovalsInput | UserUncheckedCreateWithoutAssignedApprovalsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | RequisitionUpdateWithoutApprovalHistoryInput | RequisitionUncheckedUpdateWithoutApprovalHistoryInput | No |
| create | RequisitionCreateWithoutApprovalHistoryInput | RequisitionUncheckedCreateWithoutApprovalHistoryInput | No |
| where | RequisitionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionWhereInput | No |
| data | RequisitionUpdateWithoutApprovalHistoryInput | RequisitionUncheckedUpdateWithoutApprovalHistoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| overallStatus | RequisitionStatus | EnumRequisitionStatusFieldUpdateOperationsInput | No |
| initiator | UserUpdateOneRequiredWithoutInitiatedRequisitionsNestedInput | No |
| fromBU | BusinessUnitUpdateOneRequiredWithoutRequisitionsNestedInput | No |
| template | RequisitionTemplateUpdateOneRequiredWithoutRequisitionsNestedInput | No |
| submittedValues | RequisitionValueUpdateManyWithoutRequisitionNestedInput | No |
| attachments | AttachmentUpdateManyWithoutRequisitionNestedInput | No |
| actionLog | CommentUpdateManyWithoutRequisitionNestedInput | No |
| notifications | NotificationUpdateManyWithoutRequisitionNestedInput | No |
| tags | RequisitionTagUpdateManyWithoutRequisitionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| initiatorId | String | StringFieldUpdateOperationsInput | No |
| businessUnitId | String | StringFieldUpdateOperationsInput | No |
| templateId | String | StringFieldUpdateOperationsInput | No |
| overallStatus | RequisitionStatus | EnumRequisitionStatusFieldUpdateOperationsInput | No |
| submittedValues | RequisitionValueUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| attachments | AttachmentUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| actionLog | CommentUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| notifications | NotificationUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| tags | RequisitionTagUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| stepNumber | Int | IntFieldUpdateOperationsInput | No |
| workflow | ApprovalWorkflowUpdateOneRequiredWithoutStepsNestedInput | No |
| approverRole | RoleUpdateOneRequiredWithoutApprovalStepDefinitionsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| workflowId | String | StringFieldUpdateOperationsInput | No |
| stepNumber | Int | IntFieldUpdateOperationsInput | No |
| approverRoleId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutAssignedApprovalsInput | UserUncheckedUpdateWithoutAssignedApprovalsInput | No |
| create | UserCreateWithoutAssignedApprovalsInput | UserUncheckedCreateWithoutAssignedApprovalsInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutAssignedApprovalsInput | UserUncheckedUpdateWithoutAssignedApprovalsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| overallStatus | RequisitionStatus | No |
| initiator | UserCreateNestedOneWithoutInitiatedRequisitionsInput | No |
| fromBU | BusinessUnitCreateNestedOneWithoutRequisitionsInput | No |
| template | RequisitionTemplateCreateNestedOneWithoutRequisitionsInput | No |
| approvalHistory | RequisitionApprovalCreateNestedManyWithoutRequisitionInput | No |
| attachments | AttachmentCreateNestedManyWithoutRequisitionInput | No |
| actionLog | CommentCreateNestedManyWithoutRequisitionInput | No |
| notifications | NotificationCreateNestedManyWithoutRequisitionInput | No |
| tags | RequisitionTagCreateNestedManyWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| initiatorId | String | No |
| businessUnitId | String | No |
| templateId | String | No |
| overallStatus | RequisitionStatus | No |
| approvalHistory | RequisitionApprovalUncheckedCreateNestedManyWithoutRequisitionInput | No |
| attachments | AttachmentUncheckedCreateNestedManyWithoutRequisitionInput | No |
| actionLog | CommentUncheckedCreateNestedManyWithoutRequisitionInput | No |
| notifications | NotificationUncheckedCreateNestedManyWithoutRequisitionInput | No |
| tags | RequisitionTagUncheckedCreateNestedManyWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionWhereUniqueInput | No |
| create | RequisitionCreateWithoutSubmittedValuesInput | RequisitionUncheckedCreateWithoutSubmittedValuesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| label | String | No |
| fieldType | FieldType | No |
| isRequired | Boolean | No |
| placeholder | String | Null | Yes |
| order | Int | No |
| template | RequisitionTemplateCreateNestedOneWithoutFieldsInput | No |
| options | FieldOptionCreateNestedManyWithoutFieldInput | No |
| listColumns | TemplateFieldCreateNestedManyWithoutParentListFieldInput | No |
| parentListField | TemplateFieldCreateNestedOneWithoutListColumnsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| templateId | String | No |
| label | String | No |
| fieldType | FieldType | No |
| isRequired | Boolean | No |
| placeholder | String | Null | Yes |
| order | Int | No |
| parentListFieldId | String | Null | Yes |
| options | FieldOptionUncheckedCreateNestedManyWithoutFieldInput | No |
| listColumns | TemplateFieldUncheckedCreateNestedManyWithoutParentListFieldInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TemplateFieldWhereUniqueInput | No |
| create | TemplateFieldCreateWithoutSubmittedValuesInput | TemplateFieldUncheckedCreateWithoutSubmittedValuesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | RequisitionUpdateWithoutSubmittedValuesInput | RequisitionUncheckedUpdateWithoutSubmittedValuesInput | No |
| create | RequisitionCreateWithoutSubmittedValuesInput | RequisitionUncheckedCreateWithoutSubmittedValuesInput | No |
| where | RequisitionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionWhereInput | No |
| data | RequisitionUpdateWithoutSubmittedValuesInput | RequisitionUncheckedUpdateWithoutSubmittedValuesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| overallStatus | RequisitionStatus | EnumRequisitionStatusFieldUpdateOperationsInput | No |
| initiator | UserUpdateOneRequiredWithoutInitiatedRequisitionsNestedInput | No |
| fromBU | BusinessUnitUpdateOneRequiredWithoutRequisitionsNestedInput | No |
| template | RequisitionTemplateUpdateOneRequiredWithoutRequisitionsNestedInput | No |
| approvalHistory | RequisitionApprovalUpdateManyWithoutRequisitionNestedInput | No |
| attachments | AttachmentUpdateManyWithoutRequisitionNestedInput | No |
| actionLog | CommentUpdateManyWithoutRequisitionNestedInput | No |
| notifications | NotificationUpdateManyWithoutRequisitionNestedInput | No |
| tags | RequisitionTagUpdateManyWithoutRequisitionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| initiatorId | String | StringFieldUpdateOperationsInput | No |
| businessUnitId | String | StringFieldUpdateOperationsInput | No |
| templateId | String | StringFieldUpdateOperationsInput | No |
| overallStatus | RequisitionStatus | EnumRequisitionStatusFieldUpdateOperationsInput | No |
| approvalHistory | RequisitionApprovalUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| attachments | AttachmentUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| actionLog | CommentUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| notifications | NotificationUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| tags | RequisitionTagUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TemplateFieldWhereInput | No |
| data | TemplateFieldUpdateWithoutSubmittedValuesInput | TemplateFieldUncheckedUpdateWithoutSubmittedValuesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| label | String | StringFieldUpdateOperationsInput | No |
| fieldType | FieldType | EnumFieldTypeFieldUpdateOperationsInput | No |
| isRequired | Boolean | BoolFieldUpdateOperationsInput | No |
| placeholder | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| order | Int | IntFieldUpdateOperationsInput | No |
| template | RequisitionTemplateUpdateOneRequiredWithoutFieldsNestedInput | No |
| options | FieldOptionUpdateManyWithoutFieldNestedInput | No |
| listColumns | TemplateFieldUpdateManyWithoutParentListFieldNestedInput | No |
| parentListField | TemplateFieldUpdateOneWithoutListColumnsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| templateId | String | StringFieldUpdateOperationsInput | No |
| label | String | StringFieldUpdateOperationsInput | No |
| fieldType | FieldType | EnumFieldTypeFieldUpdateOperationsInput | No |
| isRequired | Boolean | BoolFieldUpdateOperationsInput | No |
| placeholder | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| order | Int | IntFieldUpdateOperationsInput | No |
| parentListFieldId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| options | FieldOptionUncheckedUpdateManyWithoutFieldNestedInput | No |
| listColumns | TemplateFieldUncheckedUpdateManyWithoutParentListFieldNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutUploadedAttachmentsInput | UserUncheckedCreateWithoutUploadedAttachmentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| overallStatus | RequisitionStatus | No |
| initiator | UserCreateNestedOneWithoutInitiatedRequisitionsInput | No |
| fromBU | BusinessUnitCreateNestedOneWithoutRequisitionsInput | No |
| template | RequisitionTemplateCreateNestedOneWithoutRequisitionsInput | No |
| approvalHistory | RequisitionApprovalCreateNestedManyWithoutRequisitionInput | No |
| submittedValues | RequisitionValueCreateNestedManyWithoutRequisitionInput | No |
| actionLog | CommentCreateNestedManyWithoutRequisitionInput | No |
| notifications | NotificationCreateNestedManyWithoutRequisitionInput | No |
| tags | RequisitionTagCreateNestedManyWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| initiatorId | String | No |
| businessUnitId | String | No |
| templateId | String | No |
| overallStatus | RequisitionStatus | No |
| approvalHistory | RequisitionApprovalUncheckedCreateNestedManyWithoutRequisitionInput | No |
| submittedValues | RequisitionValueUncheckedCreateNestedManyWithoutRequisitionInput | No |
| actionLog | CommentUncheckedCreateNestedManyWithoutRequisitionInput | No |
| notifications | NotificationUncheckedCreateNestedManyWithoutRequisitionInput | No |
| tags | RequisitionTagUncheckedCreateNestedManyWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionWhereUniqueInput | No |
| create | RequisitionCreateWithoutAttachmentsInput | RequisitionUncheckedCreateWithoutAttachmentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| content | String | No |
| action | ActionType | No |
| author | UserCreateNestedOneWithoutCommentsInput | No |
| requisition | RequisitionCreateNestedOneWithoutActionLogInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| content | String | No |
| action | ActionType | No |
| authorId | String | No |
| requisitionId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentWhereUniqueInput | No |
| create | CommentCreateWithoutAttachmentsInput | CommentUncheckedCreateWithoutAttachmentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| content | String | Null | Yes |
| sender | UserCreateNestedOneWithoutSentChatMessagesInput | No |
| chat | ChatCreateNestedOneWithoutMessagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| content | String | Null | Yes |
| senderId | String | No |
| chatId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatMessageWhereUniqueInput | No |
| create | ChatMessageCreateWithoutAttachmentsInput | ChatMessageUncheckedCreateWithoutAttachmentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutUploadedAttachmentsInput | UserUncheckedUpdateWithoutUploadedAttachmentsInput | No |
| create | UserCreateWithoutUploadedAttachmentsInput | UserUncheckedCreateWithoutUploadedAttachmentsInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutUploadedAttachmentsInput | UserUncheckedUpdateWithoutUploadedAttachmentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | RequisitionUpdateWithoutAttachmentsInput | RequisitionUncheckedUpdateWithoutAttachmentsInput | No |
| create | RequisitionCreateWithoutAttachmentsInput | RequisitionUncheckedCreateWithoutAttachmentsInput | No |
| where | RequisitionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionWhereInput | No |
| data | RequisitionUpdateWithoutAttachmentsInput | RequisitionUncheckedUpdateWithoutAttachmentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| overallStatus | RequisitionStatus | EnumRequisitionStatusFieldUpdateOperationsInput | No |
| initiator | UserUpdateOneRequiredWithoutInitiatedRequisitionsNestedInput | No |
| fromBU | BusinessUnitUpdateOneRequiredWithoutRequisitionsNestedInput | No |
| template | RequisitionTemplateUpdateOneRequiredWithoutRequisitionsNestedInput | No |
| approvalHistory | RequisitionApprovalUpdateManyWithoutRequisitionNestedInput | No |
| submittedValues | RequisitionValueUpdateManyWithoutRequisitionNestedInput | No |
| actionLog | CommentUpdateManyWithoutRequisitionNestedInput | No |
| notifications | NotificationUpdateManyWithoutRequisitionNestedInput | No |
| tags | RequisitionTagUpdateManyWithoutRequisitionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| initiatorId | String | StringFieldUpdateOperationsInput | No |
| businessUnitId | String | StringFieldUpdateOperationsInput | No |
| templateId | String | StringFieldUpdateOperationsInput | No |
| overallStatus | RequisitionStatus | EnumRequisitionStatusFieldUpdateOperationsInput | No |
| approvalHistory | RequisitionApprovalUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| submittedValues | RequisitionValueUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| actionLog | CommentUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| notifications | NotificationUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| tags | RequisitionTagUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | CommentUpdateWithoutAttachmentsInput | CommentUncheckedUpdateWithoutAttachmentsInput | No |
| create | CommentCreateWithoutAttachmentsInput | CommentUncheckedCreateWithoutAttachmentsInput | No |
| where | CommentWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentWhereInput | No |
| data | CommentUpdateWithoutAttachmentsInput | CommentUncheckedUpdateWithoutAttachmentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| action | ActionType | EnumActionTypeFieldUpdateOperationsInput | No |
| author | UserUpdateOneRequiredWithoutCommentsNestedInput | No |
| requisition | RequisitionUpdateOneRequiredWithoutActionLogNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| action | ActionType | EnumActionTypeFieldUpdateOperationsInput | No |
| authorId | String | StringFieldUpdateOperationsInput | No |
| requisitionId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ChatMessageUpdateWithoutAttachmentsInput | ChatMessageUncheckedUpdateWithoutAttachmentsInput | No |
| create | ChatMessageCreateWithoutAttachmentsInput | ChatMessageUncheckedCreateWithoutAttachmentsInput | No |
| where | ChatMessageWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatMessageWhereInput | No |
| data | ChatMessageUpdateWithoutAttachmentsInput | ChatMessageUncheckedUpdateWithoutAttachmentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| sender | UserUpdateOneRequiredWithoutSentChatMessagesNestedInput | No |
| chat | ChatUpdateOneRequiredWithoutMessagesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| senderId | String | StringFieldUpdateOperationsInput | No |
| chatId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutCommentsInput | UserUncheckedCreateWithoutCommentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| overallStatus | RequisitionStatus | No |
| initiator | UserCreateNestedOneWithoutInitiatedRequisitionsInput | No |
| fromBU | BusinessUnitCreateNestedOneWithoutRequisitionsInput | No |
| template | RequisitionTemplateCreateNestedOneWithoutRequisitionsInput | No |
| approvalHistory | RequisitionApprovalCreateNestedManyWithoutRequisitionInput | No |
| submittedValues | RequisitionValueCreateNestedManyWithoutRequisitionInput | No |
| attachments | AttachmentCreateNestedManyWithoutRequisitionInput | No |
| notifications | NotificationCreateNestedManyWithoutRequisitionInput | No |
| tags | RequisitionTagCreateNestedManyWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| initiatorId | String | No |
| businessUnitId | String | No |
| templateId | String | No |
| overallStatus | RequisitionStatus | No |
| approvalHistory | RequisitionApprovalUncheckedCreateNestedManyWithoutRequisitionInput | No |
| submittedValues | RequisitionValueUncheckedCreateNestedManyWithoutRequisitionInput | No |
| attachments | AttachmentUncheckedCreateNestedManyWithoutRequisitionInput | No |
| notifications | NotificationUncheckedCreateNestedManyWithoutRequisitionInput | No |
| tags | RequisitionTagUncheckedCreateNestedManyWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionWhereUniqueInput | No |
| create | RequisitionCreateWithoutActionLogInput | RequisitionUncheckedCreateWithoutActionLogInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| url | String | No |
| filename | String | No |
| filetype | String | No |
| size | Int | Null | Yes |
| uploader | UserCreateNestedOneWithoutUploadedAttachmentsInput | No |
| requisition | RequisitionCreateNestedOneWithoutAttachmentsInput | No |
| chatMessage | ChatMessageCreateNestedOneWithoutAttachmentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| url | String | No |
| filename | String | No |
| filetype | String | No |
| size | Int | Null | Yes |
| uploaderId | String | No |
| requisitionId | String | Null | Yes |
| chatMessageId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | AttachmentWhereUniqueInput | No |
| create | AttachmentCreateWithoutCommentInput | AttachmentUncheckedCreateWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | AttachmentCreateManyCommentInput | AttachmentCreateManyCommentInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutCommentsInput | UserUncheckedUpdateWithoutCommentsInput | No |
| create | UserCreateWithoutCommentsInput | UserUncheckedCreateWithoutCommentsInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutCommentsInput | UserUncheckedUpdateWithoutCommentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | RequisitionUpdateWithoutActionLogInput | RequisitionUncheckedUpdateWithoutActionLogInput | No |
| create | RequisitionCreateWithoutActionLogInput | RequisitionUncheckedCreateWithoutActionLogInput | No |
| where | RequisitionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionWhereInput | No |
| data | RequisitionUpdateWithoutActionLogInput | RequisitionUncheckedUpdateWithoutActionLogInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| overallStatus | RequisitionStatus | EnumRequisitionStatusFieldUpdateOperationsInput | No |
| initiator | UserUpdateOneRequiredWithoutInitiatedRequisitionsNestedInput | No |
| fromBU | BusinessUnitUpdateOneRequiredWithoutRequisitionsNestedInput | No |
| template | RequisitionTemplateUpdateOneRequiredWithoutRequisitionsNestedInput | No |
| approvalHistory | RequisitionApprovalUpdateManyWithoutRequisitionNestedInput | No |
| submittedValues | RequisitionValueUpdateManyWithoutRequisitionNestedInput | No |
| attachments | AttachmentUpdateManyWithoutRequisitionNestedInput | No |
| notifications | NotificationUpdateManyWithoutRequisitionNestedInput | No |
| tags | RequisitionTagUpdateManyWithoutRequisitionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| initiatorId | String | StringFieldUpdateOperationsInput | No |
| businessUnitId | String | StringFieldUpdateOperationsInput | No |
| templateId | String | StringFieldUpdateOperationsInput | No |
| overallStatus | RequisitionStatus | EnumRequisitionStatusFieldUpdateOperationsInput | No |
| approvalHistory | RequisitionApprovalUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| submittedValues | RequisitionValueUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| attachments | AttachmentUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| notifications | NotificationUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| tags | RequisitionTagUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AttachmentWhereUniqueInput | No |
| update | AttachmentUpdateWithoutCommentInput | AttachmentUncheckedUpdateWithoutCommentInput | No |
| create | AttachmentCreateWithoutCommentInput | AttachmentUncheckedCreateWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AttachmentWhereUniqueInput | No |
| data | AttachmentUpdateWithoutCommentInput | AttachmentUncheckedUpdateWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AttachmentScalarWhereInput | No |
| data | AttachmentUpdateManyMutationInput | AttachmentUncheckedUpdateManyWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutNotificationsInput | UserUncheckedCreateWithoutNotificationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| overallStatus | RequisitionStatus | No |
| initiator | UserCreateNestedOneWithoutInitiatedRequisitionsInput | No |
| fromBU | BusinessUnitCreateNestedOneWithoutRequisitionsInput | No |
| template | RequisitionTemplateCreateNestedOneWithoutRequisitionsInput | No |
| approvalHistory | RequisitionApprovalCreateNestedManyWithoutRequisitionInput | No |
| submittedValues | RequisitionValueCreateNestedManyWithoutRequisitionInput | No |
| attachments | AttachmentCreateNestedManyWithoutRequisitionInput | No |
| actionLog | CommentCreateNestedManyWithoutRequisitionInput | No |
| tags | RequisitionTagCreateNestedManyWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| initiatorId | String | No |
| businessUnitId | String | No |
| templateId | String | No |
| overallStatus | RequisitionStatus | No |
| approvalHistory | RequisitionApprovalUncheckedCreateNestedManyWithoutRequisitionInput | No |
| submittedValues | RequisitionValueUncheckedCreateNestedManyWithoutRequisitionInput | No |
| attachments | AttachmentUncheckedCreateNestedManyWithoutRequisitionInput | No |
| actionLog | CommentUncheckedCreateNestedManyWithoutRequisitionInput | No |
| tags | RequisitionTagUncheckedCreateNestedManyWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionWhereUniqueInput | No |
| create | RequisitionCreateWithoutNotificationsInput | RequisitionUncheckedCreateWithoutNotificationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutNotificationsInput | UserUncheckedUpdateWithoutNotificationsInput | No |
| create | UserCreateWithoutNotificationsInput | UserUncheckedCreateWithoutNotificationsInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutNotificationsInput | UserUncheckedUpdateWithoutNotificationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | RequisitionUpdateWithoutNotificationsInput | RequisitionUncheckedUpdateWithoutNotificationsInput | No |
| create | RequisitionCreateWithoutNotificationsInput | RequisitionUncheckedCreateWithoutNotificationsInput | No |
| where | RequisitionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionWhereInput | No |
| data | RequisitionUpdateWithoutNotificationsInput | RequisitionUncheckedUpdateWithoutNotificationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| overallStatus | RequisitionStatus | EnumRequisitionStatusFieldUpdateOperationsInput | No |
| initiator | UserUpdateOneRequiredWithoutInitiatedRequisitionsNestedInput | No |
| fromBU | BusinessUnitUpdateOneRequiredWithoutRequisitionsNestedInput | No |
| template | RequisitionTemplateUpdateOneRequiredWithoutRequisitionsNestedInput | No |
| approvalHistory | RequisitionApprovalUpdateManyWithoutRequisitionNestedInput | No |
| submittedValues | RequisitionValueUpdateManyWithoutRequisitionNestedInput | No |
| attachments | AttachmentUpdateManyWithoutRequisitionNestedInput | No |
| actionLog | CommentUpdateManyWithoutRequisitionNestedInput | No |
| tags | RequisitionTagUpdateManyWithoutRequisitionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| initiatorId | String | StringFieldUpdateOperationsInput | No |
| businessUnitId | String | StringFieldUpdateOperationsInput | No |
| templateId | String | StringFieldUpdateOperationsInput | No |
| overallStatus | RequisitionStatus | EnumRequisitionStatusFieldUpdateOperationsInput | No |
| approvalHistory | RequisitionApprovalUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| submittedValues | RequisitionValueUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| attachments | AttachmentUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| actionLog | CommentUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| tags | RequisitionTagUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutCreatedTagsInput | UserUncheckedCreateWithoutCreatedTagsInput | No |
| Name | Type | Nullable |
|---|---|---|
| assignedAt | DateTime | No |
| requisition | RequisitionCreateNestedOneWithoutTagsInput | No |
| assignedBy | UserCreateNestedOneWithoutTaggedRequisitionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| requisitionId | String | No |
| assignedById | String | No |
| assignedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionTagWhereUniqueInput | No |
| create | RequisitionTagCreateWithoutTagInput | RequisitionTagUncheckedCreateWithoutTagInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | RequisitionTagCreateManyTagInput | RequisitionTagCreateManyTagInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutCreatedTagsInput | UserUncheckedUpdateWithoutCreatedTagsInput | No |
| create | UserCreateWithoutCreatedTagsInput | UserUncheckedCreateWithoutCreatedTagsInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutCreatedTagsInput | UserUncheckedUpdateWithoutCreatedTagsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionTagWhereUniqueInput | No |
| update | RequisitionTagUpdateWithoutTagInput | RequisitionTagUncheckedUpdateWithoutTagInput | No |
| create | RequisitionTagCreateWithoutTagInput | RequisitionTagUncheckedCreateWithoutTagInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionTagWhereUniqueInput | No |
| data | RequisitionTagUpdateWithoutTagInput | RequisitionTagUncheckedUpdateWithoutTagInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionTagScalarWhereInput | No |
| data | RequisitionTagUpdateManyMutationInput | RequisitionTagUncheckedUpdateManyWithoutTagInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| overallStatus | RequisitionStatus | No |
| initiator | UserCreateNestedOneWithoutInitiatedRequisitionsInput | No |
| fromBU | BusinessUnitCreateNestedOneWithoutRequisitionsInput | No |
| template | RequisitionTemplateCreateNestedOneWithoutRequisitionsInput | No |
| approvalHistory | RequisitionApprovalCreateNestedManyWithoutRequisitionInput | No |
| submittedValues | RequisitionValueCreateNestedManyWithoutRequisitionInput | No |
| attachments | AttachmentCreateNestedManyWithoutRequisitionInput | No |
| actionLog | CommentCreateNestedManyWithoutRequisitionInput | No |
| notifications | NotificationCreateNestedManyWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| initiatorId | String | No |
| businessUnitId | String | No |
| templateId | String | No |
| overallStatus | RequisitionStatus | No |
| approvalHistory | RequisitionApprovalUncheckedCreateNestedManyWithoutRequisitionInput | No |
| submittedValues | RequisitionValueUncheckedCreateNestedManyWithoutRequisitionInput | No |
| attachments | AttachmentUncheckedCreateNestedManyWithoutRequisitionInput | No |
| actionLog | CommentUncheckedCreateNestedManyWithoutRequisitionInput | No |
| notifications | NotificationUncheckedCreateNestedManyWithoutRequisitionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionWhereUniqueInput | No |
| create | RequisitionCreateWithoutTagsInput | RequisitionUncheckedCreateWithoutTagsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| label | String | No |
| color | String | No |
| creator | UserCreateNestedOneWithoutCreatedTagsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| label | String | No |
| color | String | No |
| creatorId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | TagWhereUniqueInput | No |
| create | TagCreateWithoutRequisitionsInput | TagUncheckedCreateWithoutRequisitionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutTaggedRequisitionsInput | UserUncheckedCreateWithoutTaggedRequisitionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | RequisitionUpdateWithoutTagsInput | RequisitionUncheckedUpdateWithoutTagsInput | No |
| create | RequisitionCreateWithoutTagsInput | RequisitionUncheckedCreateWithoutTagsInput | No |
| where | RequisitionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequisitionWhereInput | No |
| data | RequisitionUpdateWithoutTagsInput | RequisitionUncheckedUpdateWithoutTagsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| overallStatus | RequisitionStatus | EnumRequisitionStatusFieldUpdateOperationsInput | No |
| initiator | UserUpdateOneRequiredWithoutInitiatedRequisitionsNestedInput | No |
| fromBU | BusinessUnitUpdateOneRequiredWithoutRequisitionsNestedInput | No |
| template | RequisitionTemplateUpdateOneRequiredWithoutRequisitionsNestedInput | No |
| approvalHistory | RequisitionApprovalUpdateManyWithoutRequisitionNestedInput | No |
| submittedValues | RequisitionValueUpdateManyWithoutRequisitionNestedInput | No |
| attachments | AttachmentUpdateManyWithoutRequisitionNestedInput | No |
| actionLog | CommentUpdateManyWithoutRequisitionNestedInput | No |
| notifications | NotificationUpdateManyWithoutRequisitionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| initiatorId | String | StringFieldUpdateOperationsInput | No |
| businessUnitId | String | StringFieldUpdateOperationsInput | No |
| templateId | String | StringFieldUpdateOperationsInput | No |
| overallStatus | RequisitionStatus | EnumRequisitionStatusFieldUpdateOperationsInput | No |
| approvalHistory | RequisitionApprovalUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| submittedValues | RequisitionValueUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| attachments | AttachmentUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| actionLog | CommentUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| notifications | NotificationUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | TagUpdateWithoutRequisitionsInput | TagUncheckedUpdateWithoutRequisitionsInput | No |
| create | TagCreateWithoutRequisitionsInput | TagUncheckedCreateWithoutRequisitionsInput | No |
| where | TagWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TagWhereInput | No |
| data | TagUpdateWithoutRequisitionsInput | TagUncheckedUpdateWithoutRequisitionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| label | String | StringFieldUpdateOperationsInput | No |
| color | String | StringFieldUpdateOperationsInput | No |
| creator | UserUpdateOneRequiredWithoutCreatedTagsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| label | String | StringFieldUpdateOperationsInput | No |
| color | String | StringFieldUpdateOperationsInput | No |
| creatorId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutTaggedRequisitionsInput | UserUncheckedUpdateWithoutTaggedRequisitionsInput | No |
| create | UserCreateWithoutTaggedRequisitionsInput | UserUncheckedCreateWithoutTaggedRequisitionsInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutTaggedRequisitionsInput | UserUncheckedUpdateWithoutTaggedRequisitionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutCreatedGroupChatsInput | UserUncheckedCreateWithoutCreatedGroupChatsInput | No |
| Name | Type | Nullable |
|---|---|---|
| lastReadAt | DateTime | Null | Yes |
| user | UserCreateNestedOneWithoutChatsInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| lastReadAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | ChatParticipantWhereUniqueInput | No |
| create | ChatParticipantCreateWithoutChatInput | ChatParticipantUncheckedCreateWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ChatParticipantCreateManyChatInput | ChatParticipantCreateManyChatInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| content | String | Null | Yes |
| sender | UserCreateNestedOneWithoutSentChatMessagesInput | No |
| attachments | AttachmentCreateNestedManyWithoutChatMessageInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| content | String | Null | Yes |
| senderId | String | No |
| attachments | AttachmentUncheckedCreateNestedManyWithoutChatMessageInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatMessageWhereUniqueInput | No |
| create | ChatMessageCreateWithoutChatInput | ChatMessageUncheckedCreateWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ChatMessageCreateManyChatInput | ChatMessageCreateManyChatInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutCreatedGroupChatsInput | UserUncheckedUpdateWithoutCreatedGroupChatsInput | No |
| create | UserCreateWithoutCreatedGroupChatsInput | UserUncheckedCreateWithoutCreatedGroupChatsInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutCreatedGroupChatsInput | UserUncheckedUpdateWithoutCreatedGroupChatsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatParticipantWhereUniqueInput | No |
| update | ChatParticipantUpdateWithoutChatInput | ChatParticipantUncheckedUpdateWithoutChatInput | No |
| create | ChatParticipantCreateWithoutChatInput | ChatParticipantUncheckedCreateWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatParticipantWhereUniqueInput | No |
| data | ChatParticipantUpdateWithoutChatInput | ChatParticipantUncheckedUpdateWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatParticipantScalarWhereInput | No |
| data | ChatParticipantUpdateManyMutationInput | ChatParticipantUncheckedUpdateManyWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatMessageWhereUniqueInput | No |
| update | ChatMessageUpdateWithoutChatInput | ChatMessageUncheckedUpdateWithoutChatInput | No |
| create | ChatMessageCreateWithoutChatInput | ChatMessageUncheckedCreateWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatMessageWhereUniqueInput | No |
| data | ChatMessageUpdateWithoutChatInput | ChatMessageUncheckedUpdateWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatMessageScalarWhereInput | No |
| data | ChatMessageUpdateManyMutationInput | ChatMessageUncheckedUpdateManyWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| chatType | ChatType | No |
| groupName | String | Null | Yes |
| groupImageUrl | String | Null | Yes |
| creator | UserCreateNestedOneWithoutCreatedGroupChatsInput | No |
| messages | ChatMessageCreateNestedManyWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| chatType | ChatType | No |
| groupName | String | Null | Yes |
| groupImageUrl | String | Null | Yes |
| creatorId | String | Null | Yes |
| messages | ChatMessageUncheckedCreateNestedManyWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatWhereUniqueInput | No |
| create | ChatCreateWithoutParticipantsInput | ChatUncheckedCreateWithoutParticipantsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutChatsInput | UserUncheckedCreateWithoutChatsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ChatUpdateWithoutParticipantsInput | ChatUncheckedUpdateWithoutParticipantsInput | No |
| create | ChatCreateWithoutParticipantsInput | ChatUncheckedCreateWithoutParticipantsInput | No |
| where | ChatWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatWhereInput | No |
| data | ChatUpdateWithoutParticipantsInput | ChatUncheckedUpdateWithoutParticipantsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| chatType | ChatType | EnumChatTypeFieldUpdateOperationsInput | No |
| groupName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| groupImageUrl | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| creator | UserUpdateOneWithoutCreatedGroupChatsNestedInput | No |
| messages | ChatMessageUpdateManyWithoutChatNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| chatType | ChatType | EnumChatTypeFieldUpdateOperationsInput | No |
| groupName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| groupImageUrl | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| creatorId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| messages | ChatMessageUncheckedUpdateManyWithoutChatNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutChatsInput | UserUncheckedUpdateWithoutChatsInput | No |
| create | UserCreateWithoutChatsInput | UserUncheckedCreateWithoutChatsInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutChatsInput | UserUncheckedUpdateWithoutChatsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutSentChatMessagesInput | UserUncheckedCreateWithoutSentChatMessagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| chatType | ChatType | No |
| groupName | String | Null | Yes |
| groupImageUrl | String | Null | Yes |
| creator | UserCreateNestedOneWithoutCreatedGroupChatsInput | No |
| participants | ChatParticipantCreateNestedManyWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| chatType | ChatType | No |
| groupName | String | Null | Yes |
| groupImageUrl | String | Null | Yes |
| creatorId | String | Null | Yes |
| participants | ChatParticipantUncheckedCreateNestedManyWithoutChatInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatWhereUniqueInput | No |
| create | ChatCreateWithoutMessagesInput | ChatUncheckedCreateWithoutMessagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| url | String | No |
| filename | String | No |
| filetype | String | No |
| size | Int | Null | Yes |
| uploader | UserCreateNestedOneWithoutUploadedAttachmentsInput | No |
| requisition | RequisitionCreateNestedOneWithoutAttachmentsInput | No |
| comment | CommentCreateNestedOneWithoutAttachmentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| url | String | No |
| filename | String | No |
| filetype | String | No |
| size | Int | Null | Yes |
| uploaderId | String | No |
| requisitionId | String | Null | Yes |
| commentId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | AttachmentWhereUniqueInput | No |
| create | AttachmentCreateWithoutChatMessageInput | AttachmentUncheckedCreateWithoutChatMessageInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | AttachmentCreateManyChatMessageInput | AttachmentCreateManyChatMessageInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutSentChatMessagesInput | UserUncheckedUpdateWithoutSentChatMessagesInput | No |
| create | UserCreateWithoutSentChatMessagesInput | UserUncheckedCreateWithoutSentChatMessagesInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutSentChatMessagesInput | UserUncheckedUpdateWithoutSentChatMessagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ChatUpdateWithoutMessagesInput | ChatUncheckedUpdateWithoutMessagesInput | No |
| create | ChatCreateWithoutMessagesInput | ChatUncheckedCreateWithoutMessagesInput | No |
| where | ChatWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatWhereInput | No |
| data | ChatUpdateWithoutMessagesInput | ChatUncheckedUpdateWithoutMessagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| chatType | ChatType | EnumChatTypeFieldUpdateOperationsInput | No |
| groupName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| groupImageUrl | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| creator | UserUpdateOneWithoutCreatedGroupChatsNestedInput | No |
| participants | ChatParticipantUpdateManyWithoutChatNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| chatType | ChatType | EnumChatTypeFieldUpdateOperationsInput | No |
| groupName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| groupImageUrl | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| creatorId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| participants | ChatParticipantUncheckedUpdateManyWithoutChatNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AttachmentWhereUniqueInput | No |
| update | AttachmentUpdateWithoutChatMessageInput | AttachmentUncheckedUpdateWithoutChatMessageInput | No |
| create | AttachmentCreateWithoutChatMessageInput | AttachmentUncheckedCreateWithoutChatMessageInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AttachmentWhereUniqueInput | No |
| data | AttachmentUpdateWithoutChatMessageInput | AttachmentUncheckedUpdateWithoutChatMessageInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AttachmentScalarWhereInput | No |
| data | AttachmentUpdateManyMutationInput | AttachmentUncheckedUpdateManyWithoutChatMessageInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| expiresAt | DateTime | No |
| token | String | No |
| ipAddress | String | Null | Yes |
| userAgent | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| accountId | String | No |
| providerId | String | No |
| accessToken | String | Null | Yes |
| refreshToken | String | Null | Yes |
| idToken | String | Null | Yes |
| accessTokenExpiresAt | DateTime | Null | Yes |
| refreshTokenExpiresAt | DateTime | Null | Yes |
| scope | String | Null | Yes |
| password | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| roleId | String | No |
| assignedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| businessUnitId | String | No |
| membershipType | BUMembershipType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| message | String | No |
| isRead | Boolean | No |
| requisitionId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| businessUnitId | String | No |
| templateId | String | No |
| overallStatus | RequisitionStatus | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| requisitionId | String | No |
| stepDefinitionId | String | No |
| status | ApprovalStatus | No |
| actionedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| content | String | No |
| action | ActionType | No |
| requisitionId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| url | String | No |
| filename | String | No |
| filetype | String | No |
| size | Int | Null | Yes |
| requisitionId | String | Null | Yes |
| commentId | String | Null | Yes |
| chatMessageId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| label | String | No |
| color | String | No |
| Name | Type | Nullable |
|---|---|---|
| requisitionId | String | No |
| tagId | String | No |
| assignedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| chatId | String | No |
| lastReadAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| content | String | Null | Yes |
| chatId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| chatType | ChatType | No |
| groupName | String | Null | Yes |
| groupImageUrl | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| expiresAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| token | String | StringFieldUpdateOperationsInput | No |
| ipAddress | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| userAgent | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| expiresAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| token | String | StringFieldUpdateOperationsInput | No |
| ipAddress | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| userAgent | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| expiresAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| token | String | StringFieldUpdateOperationsInput | No |
| ipAddress | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| userAgent | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| accountId | String | StringFieldUpdateOperationsInput | No |
| providerId | String | StringFieldUpdateOperationsInput | No |
| accessToken | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| refreshToken | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| idToken | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| accessTokenExpiresAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| refreshTokenExpiresAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| scope | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| password | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| accountId | String | StringFieldUpdateOperationsInput | No |
| providerId | String | StringFieldUpdateOperationsInput | No |
| accessToken | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| refreshToken | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| idToken | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| accessTokenExpiresAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| refreshTokenExpiresAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| scope | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| password | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| accountId | String | StringFieldUpdateOperationsInput | No |
| providerId | String | StringFieldUpdateOperationsInput | No |
| accessToken | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| refreshToken | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| idToken | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| accessTokenExpiresAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| refreshTokenExpiresAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| scope | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| password | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| assignedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| role | RoleUpdateOneRequiredWithoutUserAssignmentsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| roleId | String | StringFieldUpdateOperationsInput | No |
| assignedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| roleId | String | StringFieldUpdateOperationsInput | No |
| assignedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| membershipType | BUMembershipType | EnumBUMembershipTypeFieldUpdateOperationsInput | No |
| businessUnit | BusinessUnitUpdateOneRequiredWithoutMembersNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| businessUnitId | String | StringFieldUpdateOperationsInput | No |
| membershipType | BUMembershipType | EnumBUMembershipTypeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| businessUnitId | String | StringFieldUpdateOperationsInput | No |
| membershipType | BUMembershipType | EnumBUMembershipTypeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| isRead | Boolean | BoolFieldUpdateOperationsInput | No |
| requisition | RequisitionUpdateOneWithoutNotificationsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| isRead | Boolean | BoolFieldUpdateOperationsInput | No |
| requisitionId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| isRead | Boolean | BoolFieldUpdateOperationsInput | No |
| requisitionId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| overallStatus | RequisitionStatus | EnumRequisitionStatusFieldUpdateOperationsInput | No |
| fromBU | BusinessUnitUpdateOneRequiredWithoutRequisitionsNestedInput | No |
| template | RequisitionTemplateUpdateOneRequiredWithoutRequisitionsNestedInput | No |
| approvalHistory | RequisitionApprovalUpdateManyWithoutRequisitionNestedInput | No |
| submittedValues | RequisitionValueUpdateManyWithoutRequisitionNestedInput | No |
| attachments | AttachmentUpdateManyWithoutRequisitionNestedInput | No |
| actionLog | CommentUpdateManyWithoutRequisitionNestedInput | No |
| notifications | NotificationUpdateManyWithoutRequisitionNestedInput | No |
| tags | RequisitionTagUpdateManyWithoutRequisitionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| businessUnitId | String | StringFieldUpdateOperationsInput | No |
| templateId | String | StringFieldUpdateOperationsInput | No |
| overallStatus | RequisitionStatus | EnumRequisitionStatusFieldUpdateOperationsInput | No |
| approvalHistory | RequisitionApprovalUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| submittedValues | RequisitionValueUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| attachments | AttachmentUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| actionLog | CommentUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| notifications | NotificationUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| tags | RequisitionTagUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| businessUnitId | String | StringFieldUpdateOperationsInput | No |
| templateId | String | StringFieldUpdateOperationsInput | No |
| overallStatus | RequisitionStatus | EnumRequisitionStatusFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| status | ApprovalStatus | EnumApprovalStatusFieldUpdateOperationsInput | No |
| actionedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| requisition | RequisitionUpdateOneRequiredWithoutApprovalHistoryNestedInput | No |
| stepDefinition | ApprovalStepDefinitionUpdateOneRequiredWithoutRequisitionApprovalsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| requisitionId | String | StringFieldUpdateOperationsInput | No |
| stepDefinitionId | String | StringFieldUpdateOperationsInput | No |
| status | ApprovalStatus | EnumApprovalStatusFieldUpdateOperationsInput | No |
| actionedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| requisitionId | String | StringFieldUpdateOperationsInput | No |
| stepDefinitionId | String | StringFieldUpdateOperationsInput | No |
| status | ApprovalStatus | EnumApprovalStatusFieldUpdateOperationsInput | No |
| actionedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| action | ActionType | EnumActionTypeFieldUpdateOperationsInput | No |
| requisition | RequisitionUpdateOneRequiredWithoutActionLogNestedInput | No |
| attachments | AttachmentUpdateManyWithoutCommentNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| action | ActionType | EnumActionTypeFieldUpdateOperationsInput | No |
| requisitionId | String | StringFieldUpdateOperationsInput | No |
| attachments | AttachmentUncheckedUpdateManyWithoutCommentNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| action | ActionType | EnumActionTypeFieldUpdateOperationsInput | No |
| requisitionId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| filename | String | StringFieldUpdateOperationsInput | No |
| filetype | String | StringFieldUpdateOperationsInput | No |
| size | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| requisition | RequisitionUpdateOneWithoutAttachmentsNestedInput | No |
| comment | CommentUpdateOneWithoutAttachmentsNestedInput | No |
| chatMessage | ChatMessageUpdateOneWithoutAttachmentsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| filename | String | StringFieldUpdateOperationsInput | No |
| filetype | String | StringFieldUpdateOperationsInput | No |
| size | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| requisitionId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| commentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| chatMessageId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| filename | String | StringFieldUpdateOperationsInput | No |
| filetype | String | StringFieldUpdateOperationsInput | No |
| size | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| requisitionId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| commentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| chatMessageId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| label | String | StringFieldUpdateOperationsInput | No |
| color | String | StringFieldUpdateOperationsInput | No |
| requisitions | RequisitionTagUpdateManyWithoutTagNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| label | String | StringFieldUpdateOperationsInput | No |
| color | String | StringFieldUpdateOperationsInput | No |
| requisitions | RequisitionTagUncheckedUpdateManyWithoutTagNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| label | String | StringFieldUpdateOperationsInput | No |
| color | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| assignedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| requisition | RequisitionUpdateOneRequiredWithoutTagsNestedInput | No |
| tag | TagUpdateOneRequiredWithoutRequisitionsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| requisitionId | String | StringFieldUpdateOperationsInput | No |
| tagId | String | StringFieldUpdateOperationsInput | No |
| assignedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| requisitionId | String | StringFieldUpdateOperationsInput | No |
| tagId | String | StringFieldUpdateOperationsInput | No |
| assignedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| lastReadAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| chat | ChatUpdateOneRequiredWithoutParticipantsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| chatId | String | StringFieldUpdateOperationsInput | No |
| lastReadAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| chatId | String | StringFieldUpdateOperationsInput | No |
| lastReadAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| chat | ChatUpdateOneRequiredWithoutMessagesNestedInput | No |
| attachments | AttachmentUpdateManyWithoutChatMessageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| chatId | String | StringFieldUpdateOperationsInput | No |
| attachments | AttachmentUncheckedUpdateManyWithoutChatMessageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| chatId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| chatType | ChatType | EnumChatTypeFieldUpdateOperationsInput | No |
| groupName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| groupImageUrl | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| participants | ChatParticipantUpdateManyWithoutChatNestedInput | No |
| messages | ChatMessageUpdateManyWithoutChatNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| chatType | ChatType | EnumChatTypeFieldUpdateOperationsInput | No |
| groupName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| groupImageUrl | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| participants | ChatParticipantUncheckedUpdateManyWithoutChatNestedInput | No |
| messages | ChatMessageUncheckedUpdateManyWithoutChatNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| chatType | ChatType | EnumChatTypeFieldUpdateOperationsInput | No |
| groupName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| groupImageUrl | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| membershipType | BUMembershipType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| scope | RoleScope | No |
| isBUAdmin | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| description | String | Null | Yes |
| approvalWorkflowId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| initiatorId | String | No |
| templateId | String | No |
| overallStatus | RequisitionStatus | No |
| Name | Type | Nullable |
|---|---|---|
| membershipType | BUMembershipType | EnumBUMembershipTypeFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutBusinessUnitsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | StringFieldUpdateOperationsInput | No |
| membershipType | BUMembershipType | EnumBUMembershipTypeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | StringFieldUpdateOperationsInput | No |
| membershipType | BUMembershipType | EnumBUMembershipTypeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| scope | RoleScope | EnumRoleScopeFieldUpdateOperationsInput | No |
| isBUAdmin | Boolean | BoolFieldUpdateOperationsInput | No |
| userAssignments | UserRoleAssignmentUpdateManyWithoutRoleNestedInput | No |
| accessibleTemplates | TemplateInitiatorAccessUpdateManyWithoutRoleNestedInput | No |
| approvalStepDefinitions | ApprovalStepDefinitionUpdateManyWithoutApproverRoleNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| scope | RoleScope | EnumRoleScopeFieldUpdateOperationsInput | No |
| isBUAdmin | Boolean | BoolFieldUpdateOperationsInput | No |
| userAssignments | UserRoleAssignmentUncheckedUpdateManyWithoutRoleNestedInput | No |
| accessibleTemplates | TemplateInitiatorAccessUncheckedUpdateManyWithoutRoleNestedInput | No |
| approvalStepDefinitions | ApprovalStepDefinitionUncheckedUpdateManyWithoutApproverRoleNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| scope | RoleScope | EnumRoleScopeFieldUpdateOperationsInput | No |
| isBUAdmin | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| fields | TemplateFieldUpdateManyWithoutTemplateNestedInput | No |
| initiatorAccess | TemplateInitiatorAccessUpdateManyWithoutTemplateNestedInput | No |
| approvalWorkflow | ApprovalWorkflowUpdateOneWithoutTemplatesNestedInput | No |
| requisitions | RequisitionUpdateManyWithoutTemplateNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| approvalWorkflowId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| fields | TemplateFieldUncheckedUpdateManyWithoutTemplateNestedInput | No |
| initiatorAccess | TemplateInitiatorAccessUncheckedUpdateManyWithoutTemplateNestedInput | No |
| requisitions | RequisitionUncheckedUpdateManyWithoutTemplateNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| approvalWorkflowId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| overallStatus | RequisitionStatus | EnumRequisitionStatusFieldUpdateOperationsInput | No |
| initiator | UserUpdateOneRequiredWithoutInitiatedRequisitionsNestedInput | No |
| template | RequisitionTemplateUpdateOneRequiredWithoutRequisitionsNestedInput | No |
| approvalHistory | RequisitionApprovalUpdateManyWithoutRequisitionNestedInput | No |
| submittedValues | RequisitionValueUpdateManyWithoutRequisitionNestedInput | No |
| attachments | AttachmentUpdateManyWithoutRequisitionNestedInput | No |
| actionLog | CommentUpdateManyWithoutRequisitionNestedInput | No |
| notifications | NotificationUpdateManyWithoutRequisitionNestedInput | No |
| tags | RequisitionTagUpdateManyWithoutRequisitionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| initiatorId | String | StringFieldUpdateOperationsInput | No |
| templateId | String | StringFieldUpdateOperationsInput | No |
| overallStatus | RequisitionStatus | EnumRequisitionStatusFieldUpdateOperationsInput | No |
| approvalHistory | RequisitionApprovalUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| submittedValues | RequisitionValueUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| attachments | AttachmentUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| actionLog | CommentUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| notifications | NotificationUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| tags | RequisitionTagUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| initiatorId | String | StringFieldUpdateOperationsInput | No |
| templateId | String | StringFieldUpdateOperationsInput | No |
| overallStatus | RequisitionStatus | EnumRequisitionStatusFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| assignedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| templateId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| workflowId | String | No |
| stepNumber | Int | No |
| Name | Type | Nullable |
|---|---|---|
| assignedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutRoleAssignmentsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | StringFieldUpdateOperationsInput | No |
| assignedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | StringFieldUpdateOperationsInput | No |
| assignedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| template | RequisitionTemplateUpdateOneRequiredWithoutInitiatorAccessNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| templateId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| templateId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| stepNumber | Int | IntFieldUpdateOperationsInput | No |
| workflow | ApprovalWorkflowUpdateOneRequiredWithoutStepsNestedInput | No |
| requisitionApprovals | RequisitionApprovalUpdateManyWithoutStepDefinitionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| workflowId | String | StringFieldUpdateOperationsInput | No |
| stepNumber | Int | IntFieldUpdateOperationsInput | No |
| requisitionApprovals | RequisitionApprovalUncheckedUpdateManyWithoutStepDefinitionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| workflowId | String | StringFieldUpdateOperationsInput | No |
| stepNumber | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| label | String | No |
| fieldType | FieldType | No |
| isRequired | Boolean | No |
| placeholder | String | Null | Yes |
| order | Int | No |
| parentListFieldId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| roleId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| initiatorId | String | No |
| businessUnitId | String | No |
| overallStatus | RequisitionStatus | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| label | String | StringFieldUpdateOperationsInput | No |
| fieldType | FieldType | EnumFieldTypeFieldUpdateOperationsInput | No |
| isRequired | Boolean | BoolFieldUpdateOperationsInput | No |
| placeholder | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| order | Int | IntFieldUpdateOperationsInput | No |
| options | FieldOptionUpdateManyWithoutFieldNestedInput | No |
| listColumns | TemplateFieldUpdateManyWithoutParentListFieldNestedInput | No |
| parentListField | TemplateFieldUpdateOneWithoutListColumnsNestedInput | No |
| submittedValues | RequisitionValueUpdateManyWithoutTemplateFieldNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| label | String | StringFieldUpdateOperationsInput | No |
| fieldType | FieldType | EnumFieldTypeFieldUpdateOperationsInput | No |
| isRequired | Boolean | BoolFieldUpdateOperationsInput | No |
| placeholder | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| order | Int | IntFieldUpdateOperationsInput | No |
| parentListFieldId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| options | FieldOptionUncheckedUpdateManyWithoutFieldNestedInput | No |
| listColumns | TemplateFieldUncheckedUpdateManyWithoutParentListFieldNestedInput | No |
| submittedValues | RequisitionValueUncheckedUpdateManyWithoutTemplateFieldNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| label | String | StringFieldUpdateOperationsInput | No |
| fieldType | FieldType | EnumFieldTypeFieldUpdateOperationsInput | No |
| isRequired | Boolean | BoolFieldUpdateOperationsInput | No |
| placeholder | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| order | Int | IntFieldUpdateOperationsInput | No |
| parentListFieldId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| role | RoleUpdateOneRequiredWithoutAccessibleTemplatesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| roleId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| roleId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| overallStatus | RequisitionStatus | EnumRequisitionStatusFieldUpdateOperationsInput | No |
| initiator | UserUpdateOneRequiredWithoutInitiatedRequisitionsNestedInput | No |
| fromBU | BusinessUnitUpdateOneRequiredWithoutRequisitionsNestedInput | No |
| approvalHistory | RequisitionApprovalUpdateManyWithoutRequisitionNestedInput | No |
| submittedValues | RequisitionValueUpdateManyWithoutRequisitionNestedInput | No |
| attachments | AttachmentUpdateManyWithoutRequisitionNestedInput | No |
| actionLog | CommentUpdateManyWithoutRequisitionNestedInput | No |
| notifications | NotificationUpdateManyWithoutRequisitionNestedInput | No |
| tags | RequisitionTagUpdateManyWithoutRequisitionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| initiatorId | String | StringFieldUpdateOperationsInput | No |
| businessUnitId | String | StringFieldUpdateOperationsInput | No |
| overallStatus | RequisitionStatus | EnumRequisitionStatusFieldUpdateOperationsInput | No |
| approvalHistory | RequisitionApprovalUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| submittedValues | RequisitionValueUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| attachments | AttachmentUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| actionLog | CommentUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| notifications | NotificationUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| tags | RequisitionTagUncheckedUpdateManyWithoutRequisitionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| initiatorId | String | StringFieldUpdateOperationsInput | No |
| businessUnitId | String | StringFieldUpdateOperationsInput | No |
| overallStatus | RequisitionStatus | EnumRequisitionStatusFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| label | String | No |
| value | String | No |
| order | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| templateId | String | No |
| label | String | No |
| fieldType | FieldType | No |
| isRequired | Boolean | No |
| placeholder | String | Null | Yes |
| order | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| requisitionId | String | No |
| value | String | No |
| rowIndex | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| label | String | StringFieldUpdateOperationsInput | No |
| value | String | StringFieldUpdateOperationsInput | No |
| order | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| label | String | StringFieldUpdateOperationsInput | No |
| value | String | StringFieldUpdateOperationsInput | No |
| order | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| label | String | StringFieldUpdateOperationsInput | No |
| value | String | StringFieldUpdateOperationsInput | No |
| order | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| label | String | StringFieldUpdateOperationsInput | No |
| fieldType | FieldType | EnumFieldTypeFieldUpdateOperationsInput | No |
| isRequired | Boolean | BoolFieldUpdateOperationsInput | No |
| placeholder | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| order | Int | IntFieldUpdateOperationsInput | No |
| template | RequisitionTemplateUpdateOneRequiredWithoutFieldsNestedInput | No |
| options | FieldOptionUpdateManyWithoutFieldNestedInput | No |
| listColumns | TemplateFieldUpdateManyWithoutParentListFieldNestedInput | No |
| submittedValues | RequisitionValueUpdateManyWithoutTemplateFieldNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| templateId | String | StringFieldUpdateOperationsInput | No |
| label | String | StringFieldUpdateOperationsInput | No |
| fieldType | FieldType | EnumFieldTypeFieldUpdateOperationsInput | No |
| isRequired | Boolean | BoolFieldUpdateOperationsInput | No |
| placeholder | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| order | Int | IntFieldUpdateOperationsInput | No |
| options | FieldOptionUncheckedUpdateManyWithoutFieldNestedInput | No |
| listColumns | TemplateFieldUncheckedUpdateManyWithoutParentListFieldNestedInput | No |
| submittedValues | RequisitionValueUncheckedUpdateManyWithoutTemplateFieldNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| templateId | String | StringFieldUpdateOperationsInput | No |
| label | String | StringFieldUpdateOperationsInput | No |
| fieldType | FieldType | EnumFieldTypeFieldUpdateOperationsInput | No |
| isRequired | Boolean | BoolFieldUpdateOperationsInput | No |
| placeholder | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| order | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| value | String | StringFieldUpdateOperationsInput | No |
| rowIndex | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| requisition | RequisitionUpdateOneRequiredWithoutSubmittedValuesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| requisitionId | String | StringFieldUpdateOperationsInput | No |
| value | String | StringFieldUpdateOperationsInput | No |
| rowIndex | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| requisitionId | String | StringFieldUpdateOperationsInput | No |
| value | String | StringFieldUpdateOperationsInput | No |
| rowIndex | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| stepNumber | Int | No |
| approverRoleId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| description | String | Null | Yes |
| businessUnitId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| stepNumber | Int | IntFieldUpdateOperationsInput | No |
| approverRole | RoleUpdateOneRequiredWithoutApprovalStepDefinitionsNestedInput | No |
| requisitionApprovals | RequisitionApprovalUpdateManyWithoutStepDefinitionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| stepNumber | Int | IntFieldUpdateOperationsInput | No |
| approverRoleId | String | StringFieldUpdateOperationsInput | No |
| requisitionApprovals | RequisitionApprovalUncheckedUpdateManyWithoutStepDefinitionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| stepNumber | Int | IntFieldUpdateOperationsInput | No |
| approverRoleId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| businessUnit | BusinessUnitUpdateOneRequiredWithoutRequisitionTemplatesNestedInput | No |
| fields | TemplateFieldUpdateManyWithoutTemplateNestedInput | No |
| initiatorAccess | TemplateInitiatorAccessUpdateManyWithoutTemplateNestedInput | No |
| requisitions | RequisitionUpdateManyWithoutTemplateNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| businessUnitId | String | StringFieldUpdateOperationsInput | No |
| fields | TemplateFieldUncheckedUpdateManyWithoutTemplateNestedInput | No |
| initiatorAccess | TemplateInitiatorAccessUncheckedUpdateManyWithoutTemplateNestedInput | No |
| requisitions | RequisitionUncheckedUpdateManyWithoutTemplateNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| businessUnitId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| requisitionId | String | No |
| approverId | String | Null | Yes |
| status | ApprovalStatus | No |
| actionedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| status | ApprovalStatus | EnumApprovalStatusFieldUpdateOperationsInput | No |
| actionedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| requisition | RequisitionUpdateOneRequiredWithoutApprovalHistoryNestedInput | No |
| approver | UserUpdateOneWithoutAssignedApprovalsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| requisitionId | String | StringFieldUpdateOperationsInput | No |
| approverId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| status | ApprovalStatus | EnumApprovalStatusFieldUpdateOperationsInput | No |
| actionedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| requisitionId | String | StringFieldUpdateOperationsInput | No |
| approverId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| status | ApprovalStatus | EnumApprovalStatusFieldUpdateOperationsInput | No |
| actionedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| stepDefinitionId | String | No |
| approverId | String | Null | Yes |
| status | ApprovalStatus | No |
| actionedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| templateFieldId | String | No |
| value | String | No |
| rowIndex | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| url | String | No |
| filename | String | No |
| filetype | String | No |
| size | Int | Null | Yes |
| uploaderId | String | No |
| commentId | String | Null | Yes |
| chatMessageId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| content | String | No |
| action | ActionType | No |
| authorId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| message | String | No |
| isRead | Boolean | No |
| recipientId | String | No |
| Name | Type | Nullable |
|---|---|---|
| tagId | String | No |
| assignedById | String | No |
| assignedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| status | ApprovalStatus | EnumApprovalStatusFieldUpdateOperationsInput | No |
| actionedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| stepDefinition | ApprovalStepDefinitionUpdateOneRequiredWithoutRequisitionApprovalsNestedInput | No |
| approver | UserUpdateOneWithoutAssignedApprovalsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| stepDefinitionId | String | StringFieldUpdateOperationsInput | No |
| approverId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| status | ApprovalStatus | EnumApprovalStatusFieldUpdateOperationsInput | No |
| actionedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| stepDefinitionId | String | StringFieldUpdateOperationsInput | No |
| approverId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| status | ApprovalStatus | EnumApprovalStatusFieldUpdateOperationsInput | No |
| actionedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| value | String | StringFieldUpdateOperationsInput | No |
| rowIndex | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| templateField | TemplateFieldUpdateOneRequiredWithoutSubmittedValuesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| templateFieldId | String | StringFieldUpdateOperationsInput | No |
| value | String | StringFieldUpdateOperationsInput | No |
| rowIndex | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| templateFieldId | String | StringFieldUpdateOperationsInput | No |
| value | String | StringFieldUpdateOperationsInput | No |
| rowIndex | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| filename | String | StringFieldUpdateOperationsInput | No |
| filetype | String | StringFieldUpdateOperationsInput | No |
| size | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| uploader | UserUpdateOneRequiredWithoutUploadedAttachmentsNestedInput | No |
| comment | CommentUpdateOneWithoutAttachmentsNestedInput | No |
| chatMessage | ChatMessageUpdateOneWithoutAttachmentsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| filename | String | StringFieldUpdateOperationsInput | No |
| filetype | String | StringFieldUpdateOperationsInput | No |
| size | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| uploaderId | String | StringFieldUpdateOperationsInput | No |
| commentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| chatMessageId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| filename | String | StringFieldUpdateOperationsInput | No |
| filetype | String | StringFieldUpdateOperationsInput | No |
| size | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| uploaderId | String | StringFieldUpdateOperationsInput | No |
| commentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| chatMessageId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| action | ActionType | EnumActionTypeFieldUpdateOperationsInput | No |
| author | UserUpdateOneRequiredWithoutCommentsNestedInput | No |
| attachments | AttachmentUpdateManyWithoutCommentNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| action | ActionType | EnumActionTypeFieldUpdateOperationsInput | No |
| authorId | String | StringFieldUpdateOperationsInput | No |
| attachments | AttachmentUncheckedUpdateManyWithoutCommentNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| action | ActionType | EnumActionTypeFieldUpdateOperationsInput | No |
| authorId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| isRead | Boolean | BoolFieldUpdateOperationsInput | No |
| recipient | UserUpdateOneRequiredWithoutNotificationsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| isRead | Boolean | BoolFieldUpdateOperationsInput | No |
| recipientId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| isRead | Boolean | BoolFieldUpdateOperationsInput | No |
| recipientId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| assignedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| tag | TagUpdateOneRequiredWithoutRequisitionsNestedInput | No |
| assignedBy | UserUpdateOneRequiredWithoutTaggedRequisitionsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| tagId | String | StringFieldUpdateOperationsInput | No |
| assignedById | String | StringFieldUpdateOperationsInput | No |
| assignedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| tagId | String | StringFieldUpdateOperationsInput | No |
| assignedById | String | StringFieldUpdateOperationsInput | No |
| assignedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| url | String | No |
| filename | String | No |
| filetype | String | No |
| size | Int | Null | Yes |
| uploaderId | String | No |
| requisitionId | String | Null | Yes |
| chatMessageId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| filename | String | StringFieldUpdateOperationsInput | No |
| filetype | String | StringFieldUpdateOperationsInput | No |
| size | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| uploader | UserUpdateOneRequiredWithoutUploadedAttachmentsNestedInput | No |
| requisition | RequisitionUpdateOneWithoutAttachmentsNestedInput | No |
| chatMessage | ChatMessageUpdateOneWithoutAttachmentsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| filename | String | StringFieldUpdateOperationsInput | No |
| filetype | String | StringFieldUpdateOperationsInput | No |
| size | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| uploaderId | String | StringFieldUpdateOperationsInput | No |
| requisitionId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| chatMessageId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| filename | String | StringFieldUpdateOperationsInput | No |
| filetype | String | StringFieldUpdateOperationsInput | No |
| size | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| uploaderId | String | StringFieldUpdateOperationsInput | No |
| requisitionId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| chatMessageId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| requisitionId | String | No |
| assignedById | String | No |
| assignedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| assignedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| requisition | RequisitionUpdateOneRequiredWithoutTagsNestedInput | No |
| assignedBy | UserUpdateOneRequiredWithoutTaggedRequisitionsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| requisitionId | String | StringFieldUpdateOperationsInput | No |
| assignedById | String | StringFieldUpdateOperationsInput | No |
| assignedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| requisitionId | String | StringFieldUpdateOperationsInput | No |
| assignedById | String | StringFieldUpdateOperationsInput | No |
| assignedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| lastReadAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| content | String | Null | Yes |
| senderId | String | No |
| Name | Type | Nullable |
|---|---|---|
| lastReadAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| user | UserUpdateOneRequiredWithoutChatsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | StringFieldUpdateOperationsInput | No |
| lastReadAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| userId | String | StringFieldUpdateOperationsInput | No |
| lastReadAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| sender | UserUpdateOneRequiredWithoutSentChatMessagesNestedInput | No |
| attachments | AttachmentUpdateManyWithoutChatMessageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| senderId | String | StringFieldUpdateOperationsInput | No |
| attachments | AttachmentUncheckedUpdateManyWithoutChatMessageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| senderId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| url | String | No |
| filename | String | No |
| filetype | String | No |
| size | Int | Null | Yes |
| uploaderId | String | No |
| requisitionId | String | Null | Yes |
| commentId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| filename | String | StringFieldUpdateOperationsInput | No |
| filetype | String | StringFieldUpdateOperationsInput | No |
| size | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| uploader | UserUpdateOneRequiredWithoutUploadedAttachmentsNestedInput | No |
| requisition | RequisitionUpdateOneWithoutAttachmentsNestedInput | No |
| comment | CommentUpdateOneWithoutAttachmentsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| filename | String | StringFieldUpdateOperationsInput | No |
| filetype | String | StringFieldUpdateOperationsInput | No |
| size | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| uploaderId | String | StringFieldUpdateOperationsInput | No |
| requisitionId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| commentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| filename | String | StringFieldUpdateOperationsInput | No |
| filetype | String | StringFieldUpdateOperationsInput | No |
| size | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| uploaderId | String | StringFieldUpdateOperationsInput | No |
| requisitionId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| commentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| firstName | String | No |
| lastName | String | No |
| name | String | Yes |
| String | Yes | |
| emailVerified | Boolean | No |
| image | String | No |
| status | UserStatus | Yes |
| sessions | Session[] | No |
| accounts | Account[] | No |
| roleAssignments | UserRoleAssignment[] | No |
| businessUnits | UserBusinessUnit[] | No |
| notifications | Notification[] | No |
| headedBusinessUnit | BusinessUnit | No |
| initiatedRequisitions | Requisition[] | No |
| assignedApprovals | RequisitionApproval[] | No |
| comments | Comment[] | No |
| uploadedAttachments | Attachment[] | No |
| createdTags | Tag[] | No |
| taggedRequisitions | RequisitionTag[] | No |
| chats | ChatParticipant[] | No |
| sentChatMessages | ChatMessage[] | No |
| createdGroupChats | Chat[] | No |
| _count | UserCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| expiresAt | DateTime | Yes |
| token | String | Yes |
| ipAddress | String | No |
| userAgent | String | No |
| userId | String | Yes |
| user | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| accountId | String | Yes |
| providerId | String | Yes |
| accessToken | String | No |
| refreshToken | String | No |
| idToken | String | No |
| accessTokenExpiresAt | DateTime | No |
| refreshTokenExpiresAt | DateTime | No |
| scope | String | No |
| password | String | No |
| userId | String | Yes |
| user | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| identifier | String | Yes |
| value | String | Yes |
| expiresAt | DateTime | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| name | String | Yes |
| headId | String | Yes |
| head | User | Yes |
| members | UserBusinessUnit[] | No |
| roles | Role[] | No |
| requisitionTemplates | RequisitionTemplate[] | No |
| requisitions | Requisition[] | No |
| _count | BusinessUnitCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| userId | String | Yes |
| businessUnitId | String | Yes |
| membershipType | BUMembershipType | Yes |
| user | User | Yes |
| businessUnit | BusinessUnit | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| name | String | Yes |
| scope | RoleScope | Yes |
| isBUAdmin | Boolean | Yes |
| businessUnitId | String | No |
| businessUnit | BusinessUnit | No |
| userAssignments | UserRoleAssignment[] | No |
| accessibleTemplates | TemplateInitiatorAccess[] | No |
| approvalStepDefinitions | ApprovalStepDefinition[] | No |
| _count | RoleCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| userId | String | Yes |
| roleId | String | Yes |
| assignedAt | DateTime | Yes |
| user | User | Yes |
| role | Role | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| name | String | Yes |
| description | String | No |
| businessUnitId | String | Yes |
| approvalWorkflowId | String | No |
| businessUnit | BusinessUnit | Yes |
| fields | TemplateField[] | No |
| initiatorAccess | TemplateInitiatorAccess[] | No |
| approvalWorkflow | ApprovalWorkflow | No |
| requisitions | Requisition[] | No |
| _count | RequisitionTemplateCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| templateId | String | Yes |
| label | String | Yes |
| fieldType | FieldType | Yes |
| isRequired | Boolean | Yes |
| placeholder | String | No |
| order | Int | Yes |
| parentListFieldId | String | No |
| template | RequisitionTemplate | Yes |
| options | FieldOption[] | No |
| listColumns | TemplateField[] | No |
| parentListField | TemplateField | No |
| submittedValues | RequisitionValue[] | No |
| _count | TemplateFieldCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| fieldId | String | Yes |
| label | String | Yes |
| value | String | Yes |
| order | Int | Yes |
| field | TemplateField | Yes |
| Name | Type | Nullable |
|---|---|---|
| templateId | String | Yes |
| roleId | String | Yes |
| template | RequisitionTemplate | Yes |
| role | Role | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| name | String | Yes |
| steps | ApprovalStepDefinition[] | No |
| templates | RequisitionTemplate[] | No |
| _count | ApprovalWorkflowCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| workflowId | String | Yes |
| stepNumber | Int | Yes |
| approverRoleId | String | Yes |
| workflow | ApprovalWorkflow | Yes |
| approverRole | Role | Yes |
| requisitionApprovals | RequisitionApproval[] | No |
| _count | ApprovalStepDefinitionCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| initiatorId | String | Yes |
| businessUnitId | String | Yes |
| templateId | String | Yes |
| overallStatus | RequisitionStatus | Yes |
| initiator | User | Yes |
| fromBU | BusinessUnit | Yes |
| template | RequisitionTemplate | Yes |
| approvalHistory | RequisitionApproval[] | No |
| submittedValues | RequisitionValue[] | No |
| attachments | Attachment[] | No |
| actionLog | Comment[] | No |
| notifications | Notification[] | No |
| tags | RequisitionTag[] | No |
| _count | RequisitionCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| requisitionId | String | Yes |
| stepDefinitionId | String | Yes |
| approverId | String | No |
| status | ApprovalStatus | Yes |
| actionedAt | DateTime | No |
| requisition | Requisition | Yes |
| stepDefinition | ApprovalStepDefinition | Yes |
| approver | User | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| requisitionId | String | Yes |
| templateFieldId | String | Yes |
| value | String | Yes |
| rowIndex | Int | No |
| requisition | Requisition | Yes |
| templateField | TemplateField | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| url | String | Yes |
| filename | String | Yes |
| filetype | String | Yes |
| size | Int | No |
| uploaderId | String | Yes |
| requisitionId | String | No |
| commentId | String | No |
| chatMessageId | String | No |
| uploader | User | Yes |
| requisition | Requisition | No |
| comment | Comment | No |
| chatMessage | ChatMessage | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| content | String | Yes |
| action | ActionType | Yes |
| authorId | String | Yes |
| requisitionId | String | Yes |
| author | User | Yes |
| requisition | Requisition | Yes |
| attachments | Attachment[] | No |
| _count | CommentCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| message | String | Yes |
| isRead | Boolean | Yes |
| recipientId | String | Yes |
| requisitionId | String | No |
| recipient | User | Yes |
| requisition | Requisition | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| label | String | Yes |
| color | String | Yes |
| creatorId | String | Yes |
| creator | User | Yes |
| requisitions | RequisitionTag[] | No |
| _count | TagCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| requisitionId | String | Yes |
| tagId | String | Yes |
| assignedById | String | Yes |
| assignedAt | DateTime | Yes |
| requisition | Requisition | Yes |
| tag | Tag | Yes |
| assignedBy | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| chatType | ChatType | Yes |
| groupName | String | No |
| groupImageUrl | String | No |
| creatorId | String | No |
| creator | User | No |
| participants | ChatParticipant[] | No |
| messages | ChatMessage[] | No |
| _count | ChatCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| chatId | String | Yes |
| userId | String | Yes |
| lastReadAt | DateTime | No |
| chat | Chat | Yes |
| user | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| content | String | No |
| senderId | String | Yes |
| chatId | String | Yes |
| sender | User | Yes |
| chat | Chat | Yes |
| attachments | Attachment[] | No |
| _count | ChatMessageCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| firstName | String | No |
| lastName | String | No |
| name | String | Yes |
| String | Yes | |
| emailVerified | Boolean | No |
| image | String | No |
| status | UserStatus | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| firstName | String | No |
| lastName | String | No |
| name | String | Yes |
| String | Yes | |
| emailVerified | Boolean | No |
| image | String | No |
| status | UserStatus | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| expiresAt | DateTime | Yes |
| token | String | Yes |
| ipAddress | String | No |
| userAgent | String | No |
| userId | String | Yes |
| user | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| expiresAt | DateTime | Yes |
| token | String | Yes |
| ipAddress | String | No |
| userAgent | String | No |
| userId | String | Yes |
| user | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| accountId | String | Yes |
| providerId | String | Yes |
| accessToken | String | No |
| refreshToken | String | No |
| idToken | String | No |
| accessTokenExpiresAt | DateTime | No |
| refreshTokenExpiresAt | DateTime | No |
| scope | String | No |
| password | String | No |
| userId | String | Yes |
| user | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| accountId | String | Yes |
| providerId | String | Yes |
| accessToken | String | No |
| refreshToken | String | No |
| idToken | String | No |
| accessTokenExpiresAt | DateTime | No |
| refreshTokenExpiresAt | DateTime | No |
| scope | String | No |
| password | String | No |
| userId | String | Yes |
| user | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| identifier | String | Yes |
| value | String | Yes |
| expiresAt | DateTime | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| identifier | String | Yes |
| value | String | Yes |
| expiresAt | DateTime | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| name | String | Yes |
| headId | String | Yes |
| head | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| name | String | Yes |
| headId | String | Yes |
| head | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| userId | String | Yes |
| businessUnitId | String | Yes |
| membershipType | BUMembershipType | Yes |
| user | User | Yes |
| businessUnit | BusinessUnit | Yes |
| Name | Type | Nullable |
|---|---|---|
| userId | String | Yes |
| businessUnitId | String | Yes |
| membershipType | BUMembershipType | Yes |
| user | User | Yes |
| businessUnit | BusinessUnit | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| name | String | Yes |
| scope | RoleScope | Yes |
| isBUAdmin | Boolean | Yes |
| businessUnitId | String | No |
| businessUnit | BusinessUnit | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| name | String | Yes |
| scope | RoleScope | Yes |
| isBUAdmin | Boolean | Yes |
| businessUnitId | String | No |
| businessUnit | BusinessUnit | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | Yes |
| roleId | String | Yes |
| assignedAt | DateTime | Yes |
| user | User | Yes |
| role | Role | Yes |
| Name | Type | Nullable |
|---|---|---|
| userId | String | Yes |
| roleId | String | Yes |
| assignedAt | DateTime | Yes |
| user | User | Yes |
| role | Role | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| name | String | Yes |
| description | String | No |
| businessUnitId | String | Yes |
| approvalWorkflowId | String | No |
| businessUnit | BusinessUnit | Yes |
| approvalWorkflow | ApprovalWorkflow | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| name | String | Yes |
| description | String | No |
| businessUnitId | String | Yes |
| approvalWorkflowId | String | No |
| businessUnit | BusinessUnit | Yes |
| approvalWorkflow | ApprovalWorkflow | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| templateId | String | Yes |
| label | String | Yes |
| fieldType | FieldType | Yes |
| isRequired | Boolean | Yes |
| placeholder | String | No |
| order | Int | Yes |
| parentListFieldId | String | No |
| template | RequisitionTemplate | Yes |
| parentListField | TemplateField | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| templateId | String | Yes |
| label | String | Yes |
| fieldType | FieldType | Yes |
| isRequired | Boolean | Yes |
| placeholder | String | No |
| order | Int | Yes |
| parentListFieldId | String | No |
| template | RequisitionTemplate | Yes |
| parentListField | TemplateField | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| fieldId | String | Yes |
| label | String | Yes |
| value | String | Yes |
| order | Int | Yes |
| field | TemplateField | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| fieldId | String | Yes |
| label | String | Yes |
| value | String | Yes |
| order | Int | Yes |
| field | TemplateField | Yes |
| Name | Type | Nullable |
|---|---|---|
| templateId | String | Yes |
| roleId | String | Yes |
| template | RequisitionTemplate | Yes |
| role | Role | Yes |
| Name | Type | Nullable |
|---|---|---|
| templateId | String | Yes |
| roleId | String | Yes |
| template | RequisitionTemplate | Yes |
| role | Role | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| name | String | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| name | String | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| workflowId | String | Yes |
| stepNumber | Int | Yes |
| approverRoleId | String | Yes |
| workflow | ApprovalWorkflow | Yes |
| approverRole | Role | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| workflowId | String | Yes |
| stepNumber | Int | Yes |
| approverRoleId | String | Yes |
| workflow | ApprovalWorkflow | Yes |
| approverRole | Role | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| initiatorId | String | Yes |
| businessUnitId | String | Yes |
| templateId | String | Yes |
| overallStatus | RequisitionStatus | Yes |
| initiator | User | Yes |
| fromBU | BusinessUnit | Yes |
| template | RequisitionTemplate | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| initiatorId | String | Yes |
| businessUnitId | String | Yes |
| templateId | String | Yes |
| overallStatus | RequisitionStatus | Yes |
| initiator | User | Yes |
| fromBU | BusinessUnit | Yes |
| template | RequisitionTemplate | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| requisitionId | String | Yes |
| stepDefinitionId | String | Yes |
| approverId | String | No |
| status | ApprovalStatus | Yes |
| actionedAt | DateTime | No |
| requisition | Requisition | Yes |
| stepDefinition | ApprovalStepDefinition | Yes |
| approver | User | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| requisitionId | String | Yes |
| stepDefinitionId | String | Yes |
| approverId | String | No |
| status | ApprovalStatus | Yes |
| actionedAt | DateTime | No |
| requisition | Requisition | Yes |
| stepDefinition | ApprovalStepDefinition | Yes |
| approver | User | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| requisitionId | String | Yes |
| templateFieldId | String | Yes |
| value | String | Yes |
| rowIndex | Int | No |
| requisition | Requisition | Yes |
| templateField | TemplateField | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| requisitionId | String | Yes |
| templateFieldId | String | Yes |
| value | String | Yes |
| rowIndex | Int | No |
| requisition | Requisition | Yes |
| templateField | TemplateField | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| url | String | Yes |
| filename | String | Yes |
| filetype | String | Yes |
| size | Int | No |
| uploaderId | String | Yes |
| requisitionId | String | No |
| commentId | String | No |
| chatMessageId | String | No |
| uploader | User | Yes |
| requisition | Requisition | No |
| comment | Comment | No |
| chatMessage | ChatMessage | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| url | String | Yes |
| filename | String | Yes |
| filetype | String | Yes |
| size | Int | No |
| uploaderId | String | Yes |
| requisitionId | String | No |
| commentId | String | No |
| chatMessageId | String | No |
| uploader | User | Yes |
| requisition | Requisition | No |
| comment | Comment | No |
| chatMessage | ChatMessage | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| content | String | Yes |
| action | ActionType | Yes |
| authorId | String | Yes |
| requisitionId | String | Yes |
| author | User | Yes |
| requisition | Requisition | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| content | String | Yes |
| action | ActionType | Yes |
| authorId | String | Yes |
| requisitionId | String | Yes |
| author | User | Yes |
| requisition | Requisition | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| message | String | Yes |
| isRead | Boolean | Yes |
| recipientId | String | Yes |
| requisitionId | String | No |
| recipient | User | Yes |
| requisition | Requisition | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| message | String | Yes |
| isRead | Boolean | Yes |
| recipientId | String | Yes |
| requisitionId | String | No |
| recipient | User | Yes |
| requisition | Requisition | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| label | String | Yes |
| color | String | Yes |
| creatorId | String | Yes |
| creator | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| label | String | Yes |
| color | String | Yes |
| creatorId | String | Yes |
| creator | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| requisitionId | String | Yes |
| tagId | String | Yes |
| assignedById | String | Yes |
| assignedAt | DateTime | Yes |
| requisition | Requisition | Yes |
| tag | Tag | Yes |
| assignedBy | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| requisitionId | String | Yes |
| tagId | String | Yes |
| assignedById | String | Yes |
| assignedAt | DateTime | Yes |
| requisition | Requisition | Yes |
| tag | Tag | Yes |
| assignedBy | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| chatType | ChatType | Yes |
| groupName | String | No |
| groupImageUrl | String | No |
| creatorId | String | No |
| creator | User | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| chatType | ChatType | Yes |
| groupName | String | No |
| groupImageUrl | String | No |
| creatorId | String | No |
| creator | User | No |
| Name | Type | Nullable |
|---|---|---|
| chatId | String | Yes |
| userId | String | Yes |
| lastReadAt | DateTime | No |
| chat | Chat | Yes |
| user | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| chatId | String | Yes |
| userId | String | Yes |
| lastReadAt | DateTime | No |
| chat | Chat | Yes |
| user | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| content | String | No |
| senderId | String | Yes |
| chatId | String | Yes |
| sender | User | Yes |
| chat | Chat | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| content | String | No |
| senderId | String | Yes |
| chatId | String | Yes |
| sender | User | Yes |
| chat | Chat | Yes |
| Name | Type | Nullable |
|---|---|---|
| _count | UserCountAggregateOutputType | No |
| _min | UserMinAggregateOutputType | No |
| _max | UserMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| firstName | String | No |
| lastName | String | No |
| name | String | Yes |
| String | Yes | |
| emailVerified | Boolean | No |
| image | String | No |
| status | UserStatus | Yes |
| _count | UserCountAggregateOutputType | No |
| _min | UserMinAggregateOutputType | No |
| _max | UserMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SessionCountAggregateOutputType | No |
| _min | SessionMinAggregateOutputType | No |
| _max | SessionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| expiresAt | DateTime | Yes |
| token | String | Yes |
| ipAddress | String | No |
| userAgent | String | No |
| userId | String | Yes |
| _count | SessionCountAggregateOutputType | No |
| _min | SessionMinAggregateOutputType | No |
| _max | SessionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | AccountCountAggregateOutputType | No |
| _min | AccountMinAggregateOutputType | No |
| _max | AccountMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| accountId | String | Yes |
| providerId | String | Yes |
| accessToken | String | No |
| refreshToken | String | No |
| idToken | String | No |
| accessTokenExpiresAt | DateTime | No |
| refreshTokenExpiresAt | DateTime | No |
| scope | String | No |
| password | String | No |
| userId | String | Yes |
| _count | AccountCountAggregateOutputType | No |
| _min | AccountMinAggregateOutputType | No |
| _max | AccountMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | VerificationCountAggregateOutputType | No |
| _min | VerificationMinAggregateOutputType | No |
| _max | VerificationMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| identifier | String | Yes |
| value | String | Yes |
| expiresAt | DateTime | Yes |
| _count | VerificationCountAggregateOutputType | No |
| _min | VerificationMinAggregateOutputType | No |
| _max | VerificationMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | BusinessUnitCountAggregateOutputType | No |
| _min | BusinessUnitMinAggregateOutputType | No |
| _max | BusinessUnitMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| name | String | Yes |
| headId | String | Yes |
| _count | BusinessUnitCountAggregateOutputType | No |
| _min | BusinessUnitMinAggregateOutputType | No |
| _max | BusinessUnitMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | UserBusinessUnitCountAggregateOutputType | No |
| _min | UserBusinessUnitMinAggregateOutputType | No |
| _max | UserBusinessUnitMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | Yes |
| businessUnitId | String | Yes |
| membershipType | BUMembershipType | Yes |
| _count | UserBusinessUnitCountAggregateOutputType | No |
| _min | UserBusinessUnitMinAggregateOutputType | No |
| _max | UserBusinessUnitMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | RoleCountAggregateOutputType | No |
| _min | RoleMinAggregateOutputType | No |
| _max | RoleMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| name | String | Yes |
| scope | RoleScope | Yes |
| isBUAdmin | Boolean | Yes |
| businessUnitId | String | No |
| _count | RoleCountAggregateOutputType | No |
| _min | RoleMinAggregateOutputType | No |
| _max | RoleMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | UserRoleAssignmentCountAggregateOutputType | No |
| _min | UserRoleAssignmentMinAggregateOutputType | No |
| _max | UserRoleAssignmentMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | Yes |
| roleId | String | Yes |
| assignedAt | DateTime | Yes |
| _count | UserRoleAssignmentCountAggregateOutputType | No |
| _min | UserRoleAssignmentMinAggregateOutputType | No |
| _max | UserRoleAssignmentMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | RequisitionTemplateCountAggregateOutputType | No |
| _min | RequisitionTemplateMinAggregateOutputType | No |
| _max | RequisitionTemplateMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| name | String | Yes |
| description | String | No |
| businessUnitId | String | Yes |
| approvalWorkflowId | String | No |
| _count | RequisitionTemplateCountAggregateOutputType | No |
| _min | RequisitionTemplateMinAggregateOutputType | No |
| _max | RequisitionTemplateMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | TemplateFieldCountAggregateOutputType | No |
| _avg | TemplateFieldAvgAggregateOutputType | No |
| _sum | TemplateFieldSumAggregateOutputType | No |
| _min | TemplateFieldMinAggregateOutputType | No |
| _max | TemplateFieldMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| templateId | String | Yes |
| label | String | Yes |
| fieldType | FieldType | Yes |
| isRequired | Boolean | Yes |
| placeholder | String | No |
| order | Int | Yes |
| parentListFieldId | String | No |
| _count | TemplateFieldCountAggregateOutputType | No |
| _avg | TemplateFieldAvgAggregateOutputType | No |
| _sum | TemplateFieldSumAggregateOutputType | No |
| _min | TemplateFieldMinAggregateOutputType | No |
| _max | TemplateFieldMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | FieldOptionCountAggregateOutputType | No |
| _avg | FieldOptionAvgAggregateOutputType | No |
| _sum | FieldOptionSumAggregateOutputType | No |
| _min | FieldOptionMinAggregateOutputType | No |
| _max | FieldOptionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| fieldId | String | Yes |
| label | String | Yes |
| value | String | Yes |
| order | Int | Yes |
| _count | FieldOptionCountAggregateOutputType | No |
| _avg | FieldOptionAvgAggregateOutputType | No |
| _sum | FieldOptionSumAggregateOutputType | No |
| _min | FieldOptionMinAggregateOutputType | No |
| _max | FieldOptionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | TemplateInitiatorAccessCountAggregateOutputType | No |
| _min | TemplateInitiatorAccessMinAggregateOutputType | No |
| _max | TemplateInitiatorAccessMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| templateId | String | Yes |
| roleId | String | Yes |
| _count | TemplateInitiatorAccessCountAggregateOutputType | No |
| _min | TemplateInitiatorAccessMinAggregateOutputType | No |
| _max | TemplateInitiatorAccessMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ApprovalWorkflowCountAggregateOutputType | No |
| _min | ApprovalWorkflowMinAggregateOutputType | No |
| _max | ApprovalWorkflowMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| name | String | Yes |
| _count | ApprovalWorkflowCountAggregateOutputType | No |
| _min | ApprovalWorkflowMinAggregateOutputType | No |
| _max | ApprovalWorkflowMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ApprovalStepDefinitionCountAggregateOutputType | No |
| _avg | ApprovalStepDefinitionAvgAggregateOutputType | No |
| _sum | ApprovalStepDefinitionSumAggregateOutputType | No |
| _min | ApprovalStepDefinitionMinAggregateOutputType | No |
| _max | ApprovalStepDefinitionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| workflowId | String | Yes |
| stepNumber | Int | Yes |
| approverRoleId | String | Yes |
| _count | ApprovalStepDefinitionCountAggregateOutputType | No |
| _avg | ApprovalStepDefinitionAvgAggregateOutputType | No |
| _sum | ApprovalStepDefinitionSumAggregateOutputType | No |
| _min | ApprovalStepDefinitionMinAggregateOutputType | No |
| _max | ApprovalStepDefinitionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | RequisitionCountAggregateOutputType | No |
| _min | RequisitionMinAggregateOutputType | No |
| _max | RequisitionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| initiatorId | String | Yes |
| businessUnitId | String | Yes |
| templateId | String | Yes |
| overallStatus | RequisitionStatus | Yes |
| _count | RequisitionCountAggregateOutputType | No |
| _min | RequisitionMinAggregateOutputType | No |
| _max | RequisitionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | RequisitionApprovalCountAggregateOutputType | No |
| _min | RequisitionApprovalMinAggregateOutputType | No |
| _max | RequisitionApprovalMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| requisitionId | String | Yes |
| stepDefinitionId | String | Yes |
| approverId | String | No |
| status | ApprovalStatus | Yes |
| actionedAt | DateTime | No |
| _count | RequisitionApprovalCountAggregateOutputType | No |
| _min | RequisitionApprovalMinAggregateOutputType | No |
| _max | RequisitionApprovalMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | RequisitionValueCountAggregateOutputType | No |
| _avg | RequisitionValueAvgAggregateOutputType | No |
| _sum | RequisitionValueSumAggregateOutputType | No |
| _min | RequisitionValueMinAggregateOutputType | No |
| _max | RequisitionValueMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| requisitionId | String | Yes |
| templateFieldId | String | Yes |
| value | String | Yes |
| rowIndex | Int | No |
| _count | RequisitionValueCountAggregateOutputType | No |
| _avg | RequisitionValueAvgAggregateOutputType | No |
| _sum | RequisitionValueSumAggregateOutputType | No |
| _min | RequisitionValueMinAggregateOutputType | No |
| _max | RequisitionValueMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | AttachmentCountAggregateOutputType | No |
| _avg | AttachmentAvgAggregateOutputType | No |
| _sum | AttachmentSumAggregateOutputType | No |
| _min | AttachmentMinAggregateOutputType | No |
| _max | AttachmentMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| url | String | Yes |
| filename | String | Yes |
| filetype | String | Yes |
| size | Int | No |
| uploaderId | String | Yes |
| requisitionId | String | No |
| commentId | String | No |
| chatMessageId | String | No |
| _count | AttachmentCountAggregateOutputType | No |
| _avg | AttachmentAvgAggregateOutputType | No |
| _sum | AttachmentSumAggregateOutputType | No |
| _min | AttachmentMinAggregateOutputType | No |
| _max | AttachmentMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | CommentCountAggregateOutputType | No |
| _min | CommentMinAggregateOutputType | No |
| _max | CommentMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| content | String | Yes |
| action | ActionType | Yes |
| authorId | String | Yes |
| requisitionId | String | Yes |
| _count | CommentCountAggregateOutputType | No |
| _min | CommentMinAggregateOutputType | No |
| _max | CommentMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | NotificationCountAggregateOutputType | No |
| _min | NotificationMinAggregateOutputType | No |
| _max | NotificationMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| message | String | Yes |
| isRead | Boolean | Yes |
| recipientId | String | Yes |
| requisitionId | String | No |
| _count | NotificationCountAggregateOutputType | No |
| _min | NotificationMinAggregateOutputType | No |
| _max | NotificationMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | TagCountAggregateOutputType | No |
| _min | TagMinAggregateOutputType | No |
| _max | TagMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| label | String | Yes |
| color | String | Yes |
| creatorId | String | Yes |
| _count | TagCountAggregateOutputType | No |
| _min | TagMinAggregateOutputType | No |
| _max | TagMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | RequisitionTagCountAggregateOutputType | No |
| _min | RequisitionTagMinAggregateOutputType | No |
| _max | RequisitionTagMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| requisitionId | String | Yes |
| tagId | String | Yes |
| assignedById | String | Yes |
| assignedAt | DateTime | Yes |
| _count | RequisitionTagCountAggregateOutputType | No |
| _min | RequisitionTagMinAggregateOutputType | No |
| _max | RequisitionTagMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ChatCountAggregateOutputType | No |
| _min | ChatMinAggregateOutputType | No |
| _max | ChatMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| chatType | ChatType | Yes |
| groupName | String | No |
| groupImageUrl | String | No |
| creatorId | String | No |
| _count | ChatCountAggregateOutputType | No |
| _min | ChatMinAggregateOutputType | No |
| _max | ChatMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ChatParticipantCountAggregateOutputType | No |
| _min | ChatParticipantMinAggregateOutputType | No |
| _max | ChatParticipantMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| chatId | String | Yes |
| userId | String | Yes |
| lastReadAt | DateTime | No |
| _count | ChatParticipantCountAggregateOutputType | No |
| _min | ChatParticipantMinAggregateOutputType | No |
| _max | ChatParticipantMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ChatMessageCountAggregateOutputType | No |
| _min | ChatMessageMinAggregateOutputType | No |
| _max | ChatMessageMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| content | String | No |
| senderId | String | Yes |
| chatId | String | Yes |
| _count | ChatMessageCountAggregateOutputType | No |
| _min | ChatMessageMinAggregateOutputType | No |
| _max | ChatMessageMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| count | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| sessions | Int | Yes |
| accounts | Int | Yes |
| roleAssignments | Int | Yes |
| businessUnits | Int | Yes |
| notifications | Int | Yes |
| initiatedRequisitions | Int | Yes |
| assignedApprovals | Int | Yes |
| comments | Int | Yes |
| uploadedAttachments | Int | Yes |
| createdTags | Int | Yes |
| taggedRequisitions | Int | Yes |
| chats | Int | Yes |
| sentChatMessages | Int | Yes |
| createdGroupChats | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| firstName | Int | Yes |
| lastName | Int | Yes |
| name | Int | Yes |
| Int | Yes | |
| emailVerified | Int | Yes |
| image | Int | Yes |
| status | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| firstName | String | No |
| lastName | String | No |
| name | String | No |
| String | No | |
| emailVerified | Boolean | No |
| image | String | No |
| status | UserStatus | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| firstName | String | No |
| lastName | String | No |
| name | String | No |
| String | No | |
| emailVerified | Boolean | No |
| image | String | No |
| status | UserStatus | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| expiresAt | Int | Yes |
| token | Int | Yes |
| ipAddress | Int | Yes |
| userAgent | Int | Yes |
| userId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| expiresAt | DateTime | No |
| token | String | No |
| ipAddress | String | No |
| userAgent | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| expiresAt | DateTime | No |
| token | String | No |
| ipAddress | String | No |
| userAgent | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| accountId | Int | Yes |
| providerId | Int | Yes |
| accessToken | Int | Yes |
| refreshToken | Int | Yes |
| idToken | Int | Yes |
| accessTokenExpiresAt | Int | Yes |
| refreshTokenExpiresAt | Int | Yes |
| scope | Int | Yes |
| password | Int | Yes |
| userId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| accountId | String | No |
| providerId | String | No |
| accessToken | String | No |
| refreshToken | String | No |
| idToken | String | No |
| accessTokenExpiresAt | DateTime | No |
| refreshTokenExpiresAt | DateTime | No |
| scope | String | No |
| password | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| accountId | String | No |
| providerId | String | No |
| accessToken | String | No |
| refreshToken | String | No |
| idToken | String | No |
| accessTokenExpiresAt | DateTime | No |
| refreshTokenExpiresAt | DateTime | No |
| scope | String | No |
| password | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| identifier | Int | Yes |
| value | Int | Yes |
| expiresAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| identifier | String | No |
| value | String | No |
| expiresAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| identifier | String | No |
| value | String | No |
| expiresAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| members | Int | Yes |
| roles | Int | Yes |
| requisitionTemplates | Int | Yes |
| requisitions | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| name | Int | Yes |
| headId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| headId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| headId | String | No |
| Name | Type | Nullable |
|---|---|---|
| userId | Int | Yes |
| businessUnitId | Int | Yes |
| membershipType | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| businessUnitId | String | No |
| membershipType | BUMembershipType | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| businessUnitId | String | No |
| membershipType | BUMembershipType | No |
| Name | Type | Nullable |
|---|---|---|
| userAssignments | Int | Yes |
| accessibleTemplates | Int | Yes |
| approvalStepDefinitions | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| name | Int | Yes |
| scope | Int | Yes |
| isBUAdmin | Int | Yes |
| businessUnitId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| scope | RoleScope | No |
| isBUAdmin | Boolean | No |
| businessUnitId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| scope | RoleScope | No |
| isBUAdmin | Boolean | No |
| businessUnitId | String | No |
| Name | Type | Nullable |
|---|---|---|
| userId | Int | Yes |
| roleId | Int | Yes |
| assignedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| roleId | String | No |
| assignedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| roleId | String | No |
| assignedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| fields | Int | Yes |
| initiatorAccess | Int | Yes |
| requisitions | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| name | Int | Yes |
| description | Int | Yes |
| businessUnitId | Int | Yes |
| approvalWorkflowId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| description | String | No |
| businessUnitId | String | No |
| approvalWorkflowId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| description | String | No |
| businessUnitId | String | No |
| approvalWorkflowId | String | No |
| Name | Type | Nullable |
|---|---|---|
| options | Int | Yes |
| listColumns | Int | Yes |
| submittedValues | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| templateId | Int | Yes |
| label | Int | Yes |
| fieldType | Int | Yes |
| isRequired | Int | Yes |
| placeholder | Int | Yes |
| order | Int | Yes |
| parentListFieldId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| order | Float | No |
| Name | Type | Nullable |
|---|---|---|
| order | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| templateId | String | No |
| label | String | No |
| fieldType | FieldType | No |
| isRequired | Boolean | No |
| placeholder | String | No |
| order | Int | No |
| parentListFieldId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| templateId | String | No |
| label | String | No |
| fieldType | FieldType | No |
| isRequired | Boolean | No |
| placeholder | String | No |
| order | Int | No |
| parentListFieldId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| fieldId | Int | Yes |
| label | Int | Yes |
| value | Int | Yes |
| order | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| order | Float | No |
| Name | Type | Nullable |
|---|---|---|
| order | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| fieldId | String | No |
| label | String | No |
| value | String | No |
| order | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| fieldId | String | No |
| label | String | No |
| value | String | No |
| order | Int | No |
| Name | Type | Nullable |
|---|---|---|
| templateId | Int | Yes |
| roleId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| templateId | String | No |
| roleId | String | No |
| Name | Type | Nullable |
|---|---|---|
| templateId | String | No |
| roleId | String | No |
| Name | Type | Nullable |
|---|---|---|
| steps | Int | Yes |
| templates | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| name | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| name | String | No |
| Name | Type | Nullable |
|---|---|---|
| requisitionApprovals | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| workflowId | Int | Yes |
| stepNumber | Int | Yes |
| approverRoleId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| stepNumber | Float | No |
| Name | Type | Nullable |
|---|---|---|
| stepNumber | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| workflowId | String | No |
| stepNumber | Int | No |
| approverRoleId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| workflowId | String | No |
| stepNumber | Int | No |
| approverRoleId | String | No |
| Name | Type | Nullable |
|---|---|---|
| approvalHistory | Int | Yes |
| submittedValues | Int | Yes |
| attachments | Int | Yes |
| actionLog | Int | Yes |
| notifications | Int | Yes |
| tags | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| initiatorId | Int | Yes |
| businessUnitId | Int | Yes |
| templateId | Int | Yes |
| overallStatus | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| initiatorId | String | No |
| businessUnitId | String | No |
| templateId | String | No |
| overallStatus | RequisitionStatus | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| initiatorId | String | No |
| businessUnitId | String | No |
| templateId | String | No |
| overallStatus | RequisitionStatus | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| requisitionId | Int | Yes |
| stepDefinitionId | Int | Yes |
| approverId | Int | Yes |
| status | Int | Yes |
| actionedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| requisitionId | String | No |
| stepDefinitionId | String | No |
| approverId | String | No |
| status | ApprovalStatus | No |
| actionedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| requisitionId | String | No |
| stepDefinitionId | String | No |
| approverId | String | No |
| status | ApprovalStatus | No |
| actionedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| requisitionId | Int | Yes |
| templateFieldId | Int | Yes |
| value | Int | Yes |
| rowIndex | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| rowIndex | Float | No |
| Name | Type | Nullable |
|---|---|---|
| rowIndex | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| requisitionId | String | No |
| templateFieldId | String | No |
| value | String | No |
| rowIndex | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| requisitionId | String | No |
| templateFieldId | String | No |
| value | String | No |
| rowIndex | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| url | Int | Yes |
| filename | Int | Yes |
| filetype | Int | Yes |
| size | Int | Yes |
| uploaderId | Int | Yes |
| requisitionId | Int | Yes |
| commentId | Int | Yes |
| chatMessageId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| size | Float | No |
| Name | Type | Nullable |
|---|---|---|
| size | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| url | String | No |
| filename | String | No |
| filetype | String | No |
| size | Int | No |
| uploaderId | String | No |
| requisitionId | String | No |
| commentId | String | No |
| chatMessageId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| url | String | No |
| filename | String | No |
| filetype | String | No |
| size | Int | No |
| uploaderId | String | No |
| requisitionId | String | No |
| commentId | String | No |
| chatMessageId | String | No |
| Name | Type | Nullable |
|---|---|---|
| attachments | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| content | Int | Yes |
| action | Int | Yes |
| authorId | Int | Yes |
| requisitionId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| content | String | No |
| action | ActionType | No |
| authorId | String | No |
| requisitionId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| content | String | No |
| action | ActionType | No |
| authorId | String | No |
| requisitionId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| message | Int | Yes |
| isRead | Int | Yes |
| recipientId | Int | Yes |
| requisitionId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| message | String | No |
| isRead | Boolean | No |
| recipientId | String | No |
| requisitionId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| message | String | No |
| isRead | Boolean | No |
| recipientId | String | No |
| requisitionId | String | No |
| Name | Type | Nullable |
|---|---|---|
| requisitions | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| label | Int | Yes |
| color | Int | Yes |
| creatorId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| label | String | No |
| color | String | No |
| creatorId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| label | String | No |
| color | String | No |
| creatorId | String | No |
| Name | Type | Nullable |
|---|---|---|
| requisitionId | Int | Yes |
| tagId | Int | Yes |
| assignedById | Int | Yes |
| assignedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| requisitionId | String | No |
| tagId | String | No |
| assignedById | String | No |
| assignedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| requisitionId | String | No |
| tagId | String | No |
| assignedById | String | No |
| assignedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| participants | Int | Yes |
| messages | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| chatType | Int | Yes |
| groupName | Int | Yes |
| groupImageUrl | Int | Yes |
| creatorId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| chatType | ChatType | No |
| groupName | String | No |
| groupImageUrl | String | No |
| creatorId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| chatType | ChatType | No |
| groupName | String | No |
| groupImageUrl | String | No |
| creatorId | String | No |
| Name | Type | Nullable |
|---|---|---|
| chatId | Int | Yes |
| userId | Int | Yes |
| lastReadAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| chatId | String | No |
| userId | String | No |
| lastReadAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| chatId | String | No |
| userId | String | No |
| lastReadAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| attachments | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| content | Int | Yes |
| senderId | Int | Yes |
| chatId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| content | String | No |
| senderId | String | No |
| chatId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| content | String | No |
| senderId | String | No |
| chatId | String | No |